Here's my stored procedure
I want to call it when I click login button in my system?Code:CREATE PROCEDURE Login /* ( parameter1 INT OUT parameter2 datatype ) */ BEGIN SELECT COUNT(*) AS Expr1, Username, [Password], CanEdit FROM Accounts GROUP BY Username, [Password], CanEdit HAVING (Username = ?) AND ([Password] = ?) END
I tried to find a tutorials but I cant understand because of lack of comments in the codes.
Help please.![]()




Reply With Quote