java.sql.SQLException: No suitable driver found for jdbc.mysql://localhost:3306/123
at java.sql.DriverManager.getConnection(Unknown Source)
at java.sql.DriverManager.getConnection(Unknown Source)
at TestMysqlConnection.main(TestMysqlConnection.java:14)
抱着错误。
前面加载驱动的时候Class.forname(“com.mysql.jdbc.Driver”);没有错误
添加Connection conn = DriverManager.getConnection(“jdbc.mysql://localhost:3306/123″,”root”,”123456″);就爆出上面错误
myeclipse连接数据库的驱动已经放在WEB——info的lib目录下面了
at java.sql.DriverManager.getConnection(Unknown Source)
at java.sql.DriverManager.getConnection(Unknown Source)
at TestMysqlConnection.main(TestMysqlConnection.java:14)
抱着错误。
前面加载驱动的时候Class.forname(“com.mysql.jdbc.Driver”);没有错误
添加Connection conn = DriverManager.getConnection(“jdbc.mysql://localhost:3306/123″,”root”,”123456″);就爆出上面错误
myeclipse连接数据库的驱动已经放在WEB——info的lib目录下面了
解决方案:20分
没看出问题,这里你没写错啊