Can anyone help me. I am try to move from msql to mysql. I had the
databse connections working fine before. I changed a few things to
represent mysql and my db. But when I run the following code:
Class.forName("org.gjt.mm.mysql.Driver");
//Class.forName ("com.imaginary.sql.msql.MsqlDriver");
//String url="jdbc:msql://192.168.0.9:11114/nextrackdb";
String
url="jdbc:mysql://192.168.0.9:3036/nextrackdb?user=NT&password=NT";
String user="NT"; //msql
String pass="NT";
con
=DriverManager.getConnection("jdbc:mysql://192.168.0.9/nextrackdb?user=NT&password=NT");
stmt = con.createStatement();
I get the following error:
SQLException:
E2024 Invoking properties are invalid.
SQLState: null
VendorError: 0
The machine it runs on is 192.168.0.9
database name: nextrackdb
username: NT
password: NT
mysql version: 3.22.32
jdbc:2.0
mysql java driver: 2.0.2
Thanks for any help.
Jason