RE: MySQL weirdness

2000-05-16 Thread Danny
half Of Larry Mintz > Sent: Monday, May 08, 2000 7:32 PM > To: [EMAIL PROTECTED] > Subject: MySQL weirdness > > > I am having trouble establising user prividges. > I followed the info from devshed.com > I typed in > user(host,name,password) > values('local

RE: MySQL weirdness

2000-05-13 Thread Mike Erickson
On Mon, 8 May 2000, Mark Basil wrote: > Try > > insert into user values ("localhost","username",password("$userpassword")); The kosher way is: grant select, insert, delete, update on database.table to user@domain identified by 'password'; this will give user access to database.table when he c

RE: MySQL weirdness

2000-05-08 Thread Mark Basil
Also, try going here: http://mysql.com/Manual/manual_toc.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Larry Mintz Sent: Monday, May 08, 2000 7:32 PM To: [EMAIL PROTECTED] Subject: MySQL weirdness I am having trouble establising user

RE: MySQL weirdness

2000-05-08 Thread Mark Basil
Monday, May 08, 2000 7:32 PM To: [EMAIL PROTECTED] Subject: MySQL weirdness I am having trouble establising user prividges. I followed the info from devshed.com I typed in user(host,name,password) values('localhost','goofy',password('disney')); and MySQL reported

MySQL weirdness

2000-05-08 Thread Larry Mintz
I am having trouble establising user prividges. I followed the info from devshed.com I typed in user(host,name,password) values('localhost','goofy',password('disney')); and MySQL reported back Syntax error in Line 2 What can I do to fix this problem ? Larry<[EMAIL PROTECTED]> -- ---