On Jan 6, 2009, at 7:41 AM, php-db-digest-h...@lists.php.net wrote:


I was wondering if there is a php function
and/or mysql function that can be run from php to find out the privileges
for a particular db connection.  Any ideas?

Just to get you started try:

select * from mysql.user where concat(user, '@', host) like (select CURRENT_USER())\G

That worked for me, I'm sure you can go join to INFORMATION_SCHEMA and do more exotic (more precise) things too.

Good Luck,
Frank

--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to