Re: [PHP-DB] Confused

2003-10-05 Thread Jason Wong
On Sunday 05 October 2003 23:44, Robin Kopetzky wrote: I need to setup a user, 'commerce' with a password, that can be accessed from any web server in our farm 'blackmesa-isp.net'. What GRANT statement do I need to make this work? I've tried a bunch of the examples in the manual and can't get

Re: [PHP-DB] Confused

2003-10-05 Thread Martin Marques
El Dom 05 Oct 2003 12:44, Robin Kopetzky escribió: I need to setup a user, 'commerce' with a password, that can be accessed from any web server in our farm 'blackmesa-isp.net'. What GRANT statement do I need to make this work? I've tried a bunch of the examples in the manual and can't get it

Re: [PHP-DB] Confused

2003-10-05 Thread Martin Marques
El Dom 05 Oct 2003 13:07, Jason Wong escribió: On Sunday 05 October 2003 23:44, Robin Kopetzky wrote: I need to setup a user, 'commerce' with a password, that can be accessed from any web server in our farm 'blackmesa-isp.net'. What GRANT statement do I need to make this work? I've tried a

Re: [PHP-DB] Confused

2003-10-05 Thread Wang Feng
: [PHP-DB] Confused On Sunday 05 October 2003 23:44, Robin Kopetzky wrote: I need to setup a user, 'commerce' with a password, that can be accessed from any web server in our farm 'blackmesa-isp.net'. What GRANT statement do I need to make this work? I've tried a bunch of the examples

Re: [PHP-DB] Confused

2003-10-05 Thread Wang Feng
Jason, There are good reasons for having different lists for different subjects. Note, he post the message to the [EMAIL PROTECTED] rather than [EMAIL PROTECTED] There's nothing wrong to ask questions @ php-DB. :-) -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP-DB] Confused

2003-10-05 Thread Wang Feng
I assume you're using MySQL since L.A.M.P seems very popular. The following command should work anyway: GRANT permission ON tablename TO [EMAIL PROTECTED] IDENTIFIED BY password You can list as many permission as needed, separated by commas. cheers, feng - Original Message - From:

RE: [PHP-DB] Confused

2003-10-05 Thread Robin Kopetzky
To answer your question, yes, I'm using mysql. No, I did not intended for everyone to go thermonuclear over this question. Next time, I'll go elsewhere since some one got P.O.'d about my posting twice. Sparky -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP-DB] Confused

2003-10-05 Thread Michael Cupp, Jr.
. M -Original Message- From: Robin Kopetzky [EMAIL PROTECTED] Date: Sun, 5 Oct 2003 13:56:10 To:[EMAIL PROTECTED] Subject: RE: [PHP-DB] Confused To answer your question, yes, I'm using mysql. No, I did not intended for everyone to go thermonuclear over this question. Next time, I'll go

Re: [PHP-DB] Confused

2002-09-23 Thread Jeffrey_N_Dyke
if i'm reading right, you could use a join to get all of that info. select users.group_id, user_id, user_name, groups.group_name from users inner join groups on (groups.group_id = users.group_id) group by users.group_id parens not needed, it just makes it more legible. that should give you an