On Thu 2006-05-04 (10:24), DongInn Kim wrote: > Before, I go on, can I get the output for the following sql query? > SELECT Host, User, password FROM mysql.user; > You don't have to show the encrypted password but all I want to see is > if password is set up on root and/or oscar user or not.
yep both have passwords mysql> SELECT Host, User, password FROM mysql.user; +-----------+-------+------------------+ | Host | User | password | +-----------+-------+------------------+ | localhost | oscar | 2bc01e026ddecc90 | | localhost | root | 2bc01e026ddecc90 | +-----------+-------+------------------+ 2 rows in set (0.02 sec) ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Oscar-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/oscar-users
