3 messages in com.mysql.lists.javaRe: JDBC-MYSQL on LINUX
FromSent OnAttachments
Michael Yuan19 May 2000 01:05 
Craig Newlander19 May 2000 06:04 
Mark Matthews19 May 2000 06:35 
Subject:Re: JDBC-MYSQL on LINUX
From:Michael Yuan (jun@pan.as.utexas.edu)
Date:05/19/2000 01:05:10 AM
List:com.mysql.lists.java

String url = "jdbc:mysql://localhost/mysql?user=root=caiyu";

As someone has already pointed out, the URL does not seem correct. I would use

String URL = "jdbc:mysql://localhost/MyDatabaseName

and then provide username/password in getConnection()

Michael