views:

300

answers:

1

I am having a basic mysql stored procedure for inserting user data along with email id. For example

CALL INSERTUSER(
'Someone',
'[email protected]'
);

My problem is that the stored procedure is taking @ as special character.I am new to mysql. How can I insert this? Is there any escape character?Please help.

+1  A: 
CALL INSERTUSER(
'Someone',
'someone\@email.com'
);
Jonas Elfström
yes I tried it before.but it was not working in mysql.
Enjoy coding
oknow its working with some modification thank you./
Enjoy coding