Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to make a stored procedure using mySQL. This procedure will validate a username and a password. I'm currently running mySQL 5.0.32 so it should be possible to create procedures.

Heres the code I've used. All I get is an SQL syntax error.

   GO
    CREATE PROCEDURE checkUser
    (IN @brugernavn varchar(64)),IN @password varchar(64))
    BEGIN
    SELECT COUNT(*)  FROM bruger WHERE bruger.brugernavn=@brugernavn AND bruger.pass=@Password;
    END;

I think I've tried everything so far, I'm slowly getting to the conclusion that it's my phpMyAdmin that is being wierd. But I thought I'd ask here first :)

Thanks in advance

share|improve this question
3  
Judging from the column-names you're storing the password in plaintest, which is a bad practice. You might want to read up on using how to use hash functions to encrypt the passwords. – grimmig Feb 18 '11 at 9:56

2 Answers

up vote 8 down vote accepted

I figured it out now. Here's the correct answer

CREATE PROCEDURE checkUser 
(
   brugernavn1 varchar(64),
   password varchar(64)
) 
BEGIN 
   SELECT COUNT(*) FROM bruger 
   WHERE bruger.brugernavn=brugernavn1 
   AND bruger.pass=password; 
END; 

I think the problem might have been the @'s or the "in".. however I am no MySQL expert. This syntax it will accept

share|improve this answer
1  
Deleted my previous post. Forgot that @ points to a global var in mysql (I usually work in Sql server where @ points to a normal parameter). If you want to check the syntax of a command, you can always go to the mysql reference manual. For CREATE PROCEDURE this would be this page. – Sem Vanmeenen Feb 18 '11 at 9:28
See this page. – Sem Vanmeenen Feb 18 '11 at 9:37

(IN @brugernavn varchar(64)),IN @password varchar(64))

The problem is the ")"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.