java.sql.SQLException: No suitable driver found for jdbc:mysql://localhost/my?character
packagecommon;importjava.sql.*;publicclassDbhandle{/***数据库连接对象,若对象为null*/Connectionco...
package common;import java.sql.*;
public class Dbhandle { /**
* 数据库连接对象,若对象为null
*/
Connection conn=null;
/**
* 执行sql语句
*/
Statement st=null;
/**
* 存放查询
*/
ResultSet rs=null;
/** * 数据库连接
*/
public void getConnection(){
try {
conn = DriverManager.getConnection("jdbc:mysql://localhost/my?characterEncoding=utf-8","root", "root");
Class.forName("com.mysql.jdbc.Driver");
} catch (Exception e) {
// TODO Auto-generated catch block
System.out.println("执行getConnection()方法出错!");
e.printStackTrace();
}
}
/** * 数据库查询
*/
public void executeQuery(String sql){
try { if(conn==null){
getConnection();
}
if(st==null){
st=conn.createStatement();
}
// 2.4执行SQL语句进行数据库操作
rs=st.executeQuery(sql);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("执行executeQuery方法出错"+sql);
}
}
/**
* 数据库的增加、删除、修改
*/
// 2.4.2数据库增删改操作;
public int executeUpdate(String sql){
try {
int ret;
if(conn==null){
getConnection();
}
if(st==null){
st=conn.createStatement();
}
ret=st.executeUpdate(sql);
} catch (SQLException e) {
// TODO Auto-generated catch block
System.out.println("执行executeUpdate方法出错!sql:"+sql);
e.printStackTrace();
}
return 0;
}
/**
* 关闭数据库
*/
public void close(){
try {
if(rs!=null){
rs.close();
}
if(st!=null){
st.close();
}
if(conn!=null){
conn.close();
}
} catch (SQLException e) {
// TODO Auto-generated catch block
System.out.print("执行close方法出错");
e.printStackTrace();
}
}
}
我写了端口的、、、只是提问的时候问题太长了而没有写进去、重点是看下面的截图、运行后出现的那个错误代码 展开
public class Dbhandle { /**
* 数据库连接对象,若对象为null
*/
Connection conn=null;
/**
* 执行sql语句
*/
Statement st=null;
/**
* 存放查询
*/
ResultSet rs=null;
/** * 数据库连接
*/
public void getConnection(){
try {
conn = DriverManager.getConnection("jdbc:mysql://localhost/my?characterEncoding=utf-8","root", "root");
Class.forName("com.mysql.jdbc.Driver");
} catch (Exception e) {
// TODO Auto-generated catch block
System.out.println("执行getConnection()方法出错!");
e.printStackTrace();
}
}
/** * 数据库查询
*/
public void executeQuery(String sql){
try { if(conn==null){
getConnection();
}
if(st==null){
st=conn.createStatement();
}
// 2.4执行SQL语句进行数据库操作
rs=st.executeQuery(sql);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println("执行executeQuery方法出错"+sql);
}
}
/**
* 数据库的增加、删除、修改
*/
// 2.4.2数据库增删改操作;
public int executeUpdate(String sql){
try {
int ret;
if(conn==null){
getConnection();
}
if(st==null){
st=conn.createStatement();
}
ret=st.executeUpdate(sql);
} catch (SQLException e) {
// TODO Auto-generated catch block
System.out.println("执行executeUpdate方法出错!sql:"+sql);
e.printStackTrace();
}
return 0;
}
/**
* 关闭数据库
*/
public void close(){
try {
if(rs!=null){
rs.close();
}
if(st!=null){
st.close();
}
if(conn!=null){
conn.close();
}
} catch (SQLException e) {
// TODO Auto-generated catch block
System.out.print("执行close方法出错");
e.printStackTrace();
}
}
}
我写了端口的、、、只是提问的时候问题太长了而没有写进去、重点是看下面的截图、运行后出现的那个错误代码 展开
5个回答
展开全部
conn = DriverManager.getConnection("jdbc:mysql://localhost/my?characterEncoding=utf-8","root", "root");
Class.forName("com.mysql.jdbc.Driver");
这两行代码写反了,对调下代码就可以:
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql://localhost/my?characterEncoding=utf-8","root", "root");
Class.forName("com.mysql.jdbc.Driver");
这两行代码写反了,对调下代码就可以:
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql://localhost/my?characterEncoding=utf-8","root", "root");
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我觉得也是楼上说的问题,没写端口号吧~一般都是jdbc:mysql://localhost:3306/test这种形式的~~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/my?characterEncoding=utf-8","root", "root");
?? 是不是 少了端口号
?? 是不是 少了端口号
追问
那个是有的、、、只是复制的时候问题太长才没有弄上去、主要是看下面的截图错误代码。
追答
重新导入 驱动包,或者放在 WEB-INF 下的lib 下试试
。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
先注册驱动 然后获得连接。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询