On Sat, 15 Mar 2003, Tony Dietrich wrote:
jdbc:mysql://localhost/pp1
succeeds (I have a copy of the database on the local machine, IP 192.168.0.2), but
jdbc:mysql://192.168.0.1:3306/pp1
gives me..
"Server configuration denies access to data source"
What happens if you try accessing the machine using the mysql command-line client? ie:
mysql -u user -p -h 192.168.0.1 pp1
?
Andrew.