源程序:conn1.java
import java.sql.*;
public class conn1
{
public static void main(String[] args)
{
try{
Class.forName("org.gjt.mm.mysql.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/test/lx=root;password=111111");
if (!con.isClosed())
System.out.println("成功!");
}
catch(Exception e){
System.out.println("无法连接数据库!");
e.printStackTrace();
}
}
}
參考答案:Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/test/lx=root;password=111111");
这个有错误
应该写成
jdbc:mysql://localhost:3306/test?user=root&password=111111