Jan 23, 2002 #1 Ablecken Programmer Jun 5, 2001 130 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 Nov 28, 2000 3,387 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