1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| C:\Documents and Settings\Administrateur>mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.1.39-community MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
mysql> select user();
+----------------+
| user() |
+----------------+
| ODBC@localhost |
+----------------+
1 row in set (0.02 sec)
mysql>
mysql> show grants for ODBC@localhost;
ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'mysql'
mysql>
mysql>
mysql> create database toto;
ERROR 1044 (42000): Access denied for user ''@'localhost' to database 'toto'
mysql> |