java 连接 MySQL 一直报这个错误。在线等待高人。
Nosuitabledriverfoundforjdbc.mysql://localhost:3306/_ClassManagement?user=root&passwo...
No suitable driver found for jdbc.mysql://localhost:3306/_ClassManagement?user=root&password=****我重启了很多次,我用的是Eclipse,但是就是不行。Class.forName("com.mysql.jdbc.Driver");
System.out.println("class is OK");
conn = DriverManager.getConnection(url);class is ok可以数出来。但是后来就开始抛异常。我使用的是Eclipse。我把jdbc分别放在了webcontent下的lib和直接通过项目引用了外部Jar。都不行。高人啊,怎么回事哦
private static String url = "jdbc.mysql://localhost:3306/_classmanagement?user=root&password=***";public static Connection createConnection() {
Connection conn = null;
try {
Class.forName("com.mysql.jdbc.Driver");
System.out.println("class is OK");
conn = DriverManager.getConnection(url);
if (conn == null) {
System.out.println("Null");
} else {
System.out.println("Not Null");
}
System.out.println("conn is OK");
} catch (ClassNotFoundException e) {
e.printStackTrace();
return null;
} catch (SQLException e) {
e.printStackTrace();
return null;
}
return conn;
} 展开
System.out.println("class is OK");
conn = DriverManager.getConnection(url);class is ok可以数出来。但是后来就开始抛异常。我使用的是Eclipse。我把jdbc分别放在了webcontent下的lib和直接通过项目引用了外部Jar。都不行。高人啊,怎么回事哦
private static String url = "jdbc.mysql://localhost:3306/_classmanagement?user=root&password=***";public static Connection createConnection() {
Connection conn = null;
try {
Class.forName("com.mysql.jdbc.Driver");
System.out.println("class is OK");
conn = DriverManager.getConnection(url);
if (conn == null) {
System.out.println("Null");
} else {
System.out.println("Not Null");
}
System.out.println("conn is OK");
} catch (ClassNotFoundException e) {
e.printStackTrace();
return null;
} catch (SQLException e) {
e.printStackTrace();
return null;
}
return conn;
} 展开
5个回答
展开全部
我不太理解你说的内容,但是我写了一个连接mysql的类,你试试看,在我的电脑上是可以的
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class DB {
private String driverClass="com.mysql.jdbc.Driver";
String url="jdbc:mysql://localhost:3306/car";
String username="root";
String pw="1";
Connection conn=null;
Statement stmt=null;
ResultSet rs=null;
//******************构造方法,连接数据库*******************/
public DB(){
try {
Class.forName(driverClass);
System.out.println("Run Driver is successfully");
}catch(ClassNotFoundException e){
System.out.println("Run Driver error:"+e.getMessage());
}
try{
conn=DriverManager.getConnection(url,username,pw);
stmt=conn.createStatement();
System.out.println("Get conn and stmt is successfully");
}catch(SQLException ex){
System.out.println("Get conn or stmt error:"+ex.getMessage());
}
}
//******************getExecuteQuery()*******************/
public ResultSet getExecuteQuery (String sql){
try {
rs=stmt.executeQuery(sql);
System.out.println("Get rs is successfully");
} catch (SQLException e) {
System.out.println("Get rs error:" +e.getMessage());
}
return rs;
}
//******************close()*******************/
public void close() {
try{
rs.close();
stmt.close();
conn.close();
System.out.println("close rs,conn and stmt is successfully");
}catch(Exception e){
System.out.println("Close conn,stmt,rs error:" +e.getMessage());
if (rs!=null) rs=null;
if (stmt!=null) stmt=null;
if (conn!=null) conn=null;
}
}
}
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
public class DB {
private String driverClass="com.mysql.jdbc.Driver";
String url="jdbc:mysql://localhost:3306/car";
String username="root";
String pw="1";
Connection conn=null;
Statement stmt=null;
ResultSet rs=null;
//******************构造方法,连接数据库*******************/
public DB(){
try {
Class.forName(driverClass);
System.out.println("Run Driver is successfully");
}catch(ClassNotFoundException e){
System.out.println("Run Driver error:"+e.getMessage());
}
try{
conn=DriverManager.getConnection(url,username,pw);
stmt=conn.createStatement();
System.out.println("Get conn and stmt is successfully");
}catch(SQLException ex){
System.out.println("Get conn or stmt error:"+ex.getMessage());
}
}
//******************getExecuteQuery()*******************/
public ResultSet getExecuteQuery (String sql){
try {
rs=stmt.executeQuery(sql);
System.out.println("Get rs is successfully");
} catch (SQLException e) {
System.out.println("Get rs error:" +e.getMessage());
}
return rs;
}
//******************close()*******************/
public void close() {
try{
rs.close();
stmt.close();
conn.close();
System.out.println("close rs,conn and stmt is successfully");
}catch(Exception e){
System.out.println("Close conn,stmt,rs error:" +e.getMessage());
if (rs!=null) rs=null;
if (stmt!=null) stmt=null;
if (conn!=null) conn=null;
}
}
}
展开全部
驱动的jar包没有加载上吧。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你是不是没有添加数据库的JAR呢?连接数据库是需要先导入对应的包的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你把你取连接的整段代码复制上看看 包括url
追问
好了我把出错的代码复制上去了
追答
源代码啊?password =****? “****”是什么? 你地数据库密码? 驱动包没加的 话 估计报的错会直接提示你 class不存在的错误!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
驱动问题吧 看看版本对不对
追问
应该没问题,我之前还在其他项目下使用过 我现在单独写一个项目试试驱动
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询