JDBC Username problem
Hello
When I try to connect to a remote mysql database, the user I've specified is replaced with "username@xx.xx.xx.xx" (Where xx.xx.xx.xx is my ip), and so I cannot connect to the database. Here's the connection string
connectionHandle = DriverManager.getConnection("jdbc:mysql://dbhost.net/dbname?useUnicode=true","user", "pass");
Any ideas?
Thanks!

