JDBC连接数据库的步骤
- 将数据库的驱动加载到JVM中来
Class.forName("com.mysql.cj.jdbc.Driver");
- 创建数据库的连接
String url="jdbc:mysql://localhost:3306/test?useSSL=true&serverTimezone=UTC&characterEncoding=utf-8"; Connection conn=DriverManager.getConnection(url,"root","****");
- 要想执行sql语句,必须获得java.sql.Statement实例
Statement stm = conn.creatStatement();
- 执行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();
- 关闭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(); } }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)