我在 Mac Os X 上有 Eclipse Indigo,并且我已经下载了 mysql 连接器(5.1 版)。
我已将 jar 添加到项目中,并且正在使用以下代码:
public class Test
{
public static void main (String[] args)
{
try {
String url = "jdbc:msql://200.210.220.1:1114/Demo";
Connection conn = DriverManager.getConnection(url,"","");
Statement stmt = conn.createStatement();
ResultSet rs;
rs = stmt.executeQuery("SELECT Lname FROM Customers WHERE Snum = 2001");
while ( rs.next() ) {
String lastName = rs.getString("Lname");
System.out.println(lastName);
}
conn.close();
} catch (Exception e) {
System.err.println("Got an exception! ");
System.err.println(e.getMessage());
}
}
}
当我尝试执行程序时,我得到了这个异常:
Got an exception!
No suitable driver found for jdbc:msql://200.210.220.1:1114/Demo
我的问题是:如何安装驱动程序?我还应该做什么?
安装驱动程序后,如何获取我的数据库 URL(我使用的是 mysql 5.5)?
我没有在网上找到有效的指南,它们都太具体了。