所以这是我的事。我正在尝试从java连接到MySQL数据库。我从MySQL下载了连接器驱动程序(它名为“mysql-connector-java-5.0.8-bin.jar”),我添加到我的库(我使用NetBeans)。我尝试做这样简单的连接:
package datacon;
public class Datacon {
public static void main(String[] args) {
try {
java.sql.Connection con = (java.sql.Connection) java.sql.DriverManager
.getConnection("jdbc:mysql://localhost:3306/test"
/*, "root"
, "root" */ );
} catch ( Exception e ) {
System.out.println( e.toString() );
}
}
}
但这件事变得很糟糕:
java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost:3306/test
我在互联网上进行了研究,这很常见,但没有一个答案对我有帮助。我可以通过NetBeans / services连接到数据库,因此URL jdbc:mysql:// localhost:3306 / test 应该是正确的。
我正在使用:
java: Oracle java SDK 1.7.0 _ 45
IDE: NetBeans 7.4
OS: Debian 3.2.51-1 x86_64
Driver: MySQL Connector/J 5.0.8
我担心这会有一个非常微不足道的答案,但我现在被困在这里一段时间,我需要移动。那我错过了什么?
答案 0 :(得分:1)
添加:
static {
try {
Class.forName("com.mysql.jdbc.Driver");
} catch (final ClassNotFoundException e) {
e.printStackTrace();
}
}
答案 1 :(得分:1)
我忘了加载驱动程序。
Class.forName("com.mysql.jdbc.Driver");
并确保您的班级路径中有mysql-connector-java-5.1.22-bin
。
答案 2 :(得分:0)
try {
Class.forName("org.gjt.mm.mysql.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root","root");
} catch(ClassNotFoundException e) {
e.printStackTrace();
}
答案 3 :(得分:0)
尝试{ 的Class.forName( “com.mysql.jdbc.Driver”);
driver.getconnection("connenctionurl","name","password");
Statement s =goodrecive.asif().createStatement();
s.executeUpdate("INSERT INTO product(productno,productname,quantity,ammount)values('"+t1.getText()+"','"+t2.getText()+"','"+t3.getText()+"','"+t4.getText()+"')");
} catch (Exception e) {
System.out.println(e);
}
}
答案 4 :(得分:0)
我的连接课程:
package connection;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.SQLException;
public class ConnectionFactory {
public Connection getConnection() throws SQLException {
return DriverManager.getConnection("jdbc:mysql://localhost:3306/<database>", "<user>", "<password>");
}
}
不需要添加ClassForName。这在旧版本的java中是必需的。