求一个能连接my sql数据库的java小程序,考试用,要源代码,用的是eclipse
2个回答
展开全部
一般编程的书籍都会有案例步骤的呀,给你个案例哈!自己拷贝下来试试看,望采纳!
/**
* 所有操作数据库具体的类
* @author Administrator
*
*/
public class BaseDao {
/**
* @param args
* @throws SQLException
*/
public Connection getConnection() throws SQLException{
Connection con=null;
try {
Class.forName("com.mysql.jdbc.Driver");
String url="jdbc:mysql://localhost/bbs_pk?user=root&useUnicode=true&characterEncoding=gb2312";
con = DriverManager.getConnection(url);
} catch (ClassNotFoundException e) {
// TODO: handle exception
e.printStackTrace();
}catch (SQLException e) {
// TODO: handle exception
e.printStackTrace();
}
return con;
}
public void close(Connection con,PreparedStatement pst,ResultSet rs){
if (rs!=null) {
try {
rs.close();
} catch (SQLException ex) {
// TODO: handle exception
ex.printStackTrace();
}finally{
rs=null;//交给java进行垃圾回收
}
}
if(pst!=null){
try {
pst.close();
} catch (SQLException e) {
// TODO: handle exception
}finally{
pst=null;
}
}
}
}
/**
* 所有操作数据库具体的类
* @author Administrator
*
*/
public class BaseDao {
/**
* @param args
* @throws SQLException
*/
public Connection getConnection() throws SQLException{
Connection con=null;
try {
Class.forName("com.mysql.jdbc.Driver");
String url="jdbc:mysql://localhost/bbs_pk?user=root&useUnicode=true&characterEncoding=gb2312";
con = DriverManager.getConnection(url);
} catch (ClassNotFoundException e) {
// TODO: handle exception
e.printStackTrace();
}catch (SQLException e) {
// TODO: handle exception
e.printStackTrace();
}
return con;
}
public void close(Connection con,PreparedStatement pst,ResultSet rs){
if (rs!=null) {
try {
rs.close();
} catch (SQLException ex) {
// TODO: handle exception
ex.printStackTrace();
}finally{
rs=null;//交给java进行垃圾回收
}
}
if(pst!=null){
try {
pst.close();
} catch (SQLException e) {
// TODO: handle exception
}finally{
pst=null;
}
}
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询