I know its a newbie problem that much I do know but not sure what I am doing wrong
I have three output parameters defined
outUserID
outUserName
outPass
The select statment that I want to execute is:
Select UserID, UserName, Pass from tbl_security
Looking at the documentation the Stored Proc SQL Statement
Should be the following:
SELECT UserID INTO outUserID, UserName INTO outUserID, Pass INTO outPASS FROM tbl_security;
but this doesn't work and says the UserName varialbe is not declared. What am I doing wrong?
I have three output parameters defined
outUserID
outUserName
outPass
The select statment that I want to execute is:
Select UserID, UserName, Pass from tbl_security
Looking at the documentation the Stored Proc SQL Statement
Should be the following:
SELECT UserID INTO outUserID, UserName INTO outUserID, Pass INTO outPASS FROM tbl_security;
but this doesn't work and says the UserName varialbe is not declared. What am I doing wrong?