Facts:
1) I can run Aware and it talks to MySQL, which is running on a separate server, as long as the MySQL root account has no password.
2) If I give MySQL root account a password and change the Aware properties file as the Aware docs tell me to, MySQL rejects Aware at authentication time.
3) I can run MySQL Administrator program on my computer and it can access MySQL both with and without a root password.
You wrote:
If you are not sure please start mysql utility from the Startup menu and issue the following commands:
1) use mysql
2) select * from user;
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1342 to server version: 5.0.19-nt
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> use mysql
Database changed
mysql> select * from user;
+-----------+------+----------+-------------+-------------+-------------+-------
------+-------------+-----------+-------------+---------------+--------------+--
---------+------------+-----------------+------------+------------+-------------
-+------------+-----------------------+------------------+--------------+-------
----------+------------------+------------------+----------------+--------------
-------+--------------------+------------------+----------+------------+--------
-----+--------------+---------------+-------------+-----------------+-----------
-----------+
| Host | User | Password | Select_priv | Insert_priv | Update_priv | Delete
_priv | Create_priv | Drop_priv | Reload_priv | Shutdown_priv | Process_priv | F
ile_priv | Grant_priv | References_priv | Index_priv | Alter_priv | Show_db_priv
| Super_priv | Create_tmp_table_priv | Lock_tables_priv | Execute_priv | Repl_s
lave_priv | Repl_client_priv | Create_view_priv | Show_view_priv | Create_routin
e_priv | Alter_routine_priv | Create_user_priv | ssl_type | ssl_cipher | x509_is
suer | x509_subject | max_questions | max_updates | max_connections | max_user_c
onnections |
+-----------+------+----------+-------------+-------------+-------------+-------
------+-------------+-----------+-------------+---------------+--------------+--
---------+------------+-----------------+------------+------------+-------------
-+------------+-----------------------+------------------+--------------+-------
----------+------------------+------------------+----------------+--------------
-------+--------------------+------------------+----------+------------+--------
-----+--------------+---------------+-------------+-----------------+-----------
-----------+
| localhost | root | | Y | Y | Y | Y
| Y | Y | Y | Y | Y | Y
| Y | Y | Y | Y | Y
| Y | Y | Y | Y | Y
| Y | Y | Y | Y
| Y | Y | | |
| | 0 | 0 | 0 | 0
|
| % | root | | Y | Y | Y | Y
| Y | Y | Y | Y | Y | Y
| Y | Y | Y | Y | Y
| Y | Y | Y | Y | Y
| Y | N | N | N
| N | N | | |
| | 0 | 0 | 0 | 0
|
+-----------+------+----------+-------------+-------------+-------------+-------
------+-------------+-----------+-------------+---------------+--------------+--
---------+------------+-----------------+------------+------------+-------------
-+------------+-----------------------+------------------+--------------+-------
----------+------------------+------------------+----------------+--------------
-------+--------------------+------------------+----------+------------+--------
-----+--------------+---------------+-------------+-----------------+-----------
-----------+
2 rows in set (0.00 sec)
mysql>
thanks,
Terry