Jan 23, 2002 #1 Ablecken Programmer Joined Jun 5, 2001 Messages 130 Location US I need help with this. Does anybody see anything wrong with this? UPDATE userlogin SET password='asdf' WHERE user='Justin' thanx
I need help with this. Does anybody see anything wrong with this? UPDATE userlogin SET password='asdf' WHERE user='Justin' thanx
Jan 23, 2002 #2 link9 Programmer Joined Nov 28, 2000 Messages 3,387 Location US Try surrounding your password and user in []'s They're reserved words in some DBMS's UPDATE userlogin SET [password]='asdf' WHERE [user]='Justin' paul Upvote 0 Downvote
Try surrounding your password and user in []'s They're reserved words in some DBMS's UPDATE userlogin SET [password]='asdf' WHERE [user]='Justin' paul