when i create sp on phpmyadmin
CREATE PROCEDURE spGetUsers()
BEGIN
SELECT UserName, FirstName, LastName
FROM tblUsers;
END
it gives error
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near " at line 3
then i put
delimiter to //
now its shoeing access denied for user 1044....................
what can i do fr it??????????????