JDBC连接数据库的 *** 作步骤

JDBC连接数据库的 *** 作步骤,第1张

JDBC连接数据库的 *** 作步骤

JDBC连接数据库的步骤

  1. 将数据库的驱动加载到JVM中来
Class.forName("com.mysql.cj.jdbc.Driver");
  1. 创建数据库的连接
String url="jdbc:mysql://localhost:3306/test?useSSL=true&serverTimezone=UTC&characterEncoding=utf-8";
Connection conn=DriverManager.getConnection(url,"root","****");
  1. 要想执行sql语句,必须获得java.sql.Statement实例
Statement stm = conn.creatStatement();
  1. 执行sql语句
    Statement接口提供了三个sql语句 *** 作的方法:
    executeQuery(String str) :执行sql查询语句的 *** 作,返回一个结果集
    executeUpdate(String str) :执行增删改的 *** 作,返回一个整数,代表本次 *** 作影响到的记录数
    execute(String str):
ResultSet rs = stm.executeQuery();
int rows =stm.executeUpdate();
boolean bool = stm.execute();
  1. 关闭JDBC
    关闭ResultSet;
    再关闭Statement;
    最后关闭连接对象connection;
if(rs != null){//关闭ResultSet
	try{
		rs.close();
	}catch(SQLException e){
		e.printStackTrace();
	}
}if(stm !=null){//关闭Statement
	try{
		stm.close();
	}catch(SQLException e){
		e.printStackTrace();
	}
}if(conn != null){//关闭connection
	try{
		conn.close();
	}catch(SQLException e){
		e.printStackTrace();
	}
	
}

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5691665.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存