* Romeo Manzur ([EMAIL PROTECTED]) wrote:
> how could I configure diferent user password  to each database on my
> server???

You can probably achieve this with grant statements.

Grant SELECT on test.* to myuser@localhost identified by 'pass1';
Grant SELECT on other.* to myuser@localhost identified by 'pass2';

Jeff

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to