我正嘗試在eclipse中從java web應用程序連接到mysql。與JDBC的Java JDBC連接
Connection con = null;
try {
//DriverManager.registerDriver(new com.mysql.jdbc.Driver());
Class.forName("com.mysql.jdbc.Driver");
con = DriverManager.getConnection("jdbc:mysql://localhost/db_name","root" ,"");
if(!con.isClosed())
System.out.println("Successfully connected to " +
"MySQL server using TCP/IP...");
} catch(Exception e) {
System.err.println("Exception: " + e.getMessage());
} finally {
try {
if(con != null)
con.close();
} catch(SQLException e) {
System.out.println(e.toString());
}
}
我總是得到異常:com.mysql.jdbc.Driver
我已經下載了罐子http://forums.mysql.com/read.php?39,218287,220327
進口它的 「Java構建路徑/ lib目錄」
mysql版本是5.1.3之下的。
運行:
的MySQL 5.1.3(db是啓動和運行查詢形成PHP)
視窗XP
的Java EE
一個教訓:請不要將sysout排除在外。改用'e.printStackTrace()'。你會得到更多的細節。 – BalusC 2010-05-10 00:56:47