Click here to Skip to main content
15,887,776 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
is there a better way for this?
SQL
IF((SELECT COUNT(*) FROM s_Users WHERE username=@username and password=@password)>0)
-- login

???
Posted

It might be useful to hash the password, too. Storing passwords in plaintext in the database is a bad idea :)
 
Share this answer
 
Have you tried this one?

SQL
IF EXISTS(SELECT 1 FROM s_Users WHERE username=@Username AND password=@Password)
BEGIN
  -- ACCEPT LOGIN
END
ELSE
  -- AUTHENTICATION FAILURE


Regards,
Eduard
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900