我想将服务器连接到mysql数据库。我包含驱动程序库mysql-connector-java-5.0.8.I安装了mysql连接器。我有这段代码:
public void connect() throws SQLException, ClassNotFoundException{
String source="jdbc:derby://localhost:3306/security";
Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection(source,"root","");
} 我使用xampp作为mysql数据库。我创建了一个名为security的数据库。当我尝试执行connect()方法时,我收到了
No suitable driver found for jdbc:derby://localhost:3306/security
exception.I搜索了几个小时,但我找不到解决问题的方法。这是我用来尝试连接数据库的完整代码。
答案 0 :(得分:2)
替换
String source="jdbc:derby://localhost:3306/security";
到
String source="jdbc:mysql://localhost:3306/security";
答案 1 :(得分:2)
尝试用“mysql”替换“derby”。