码迷,mamicode.com
首页 > 数据库 > 详细

JDBC

时间:2020-11-16 13:44:24      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:cut   connect   结果   驱动   资源   man   创建数据库   exe   object   

一、JDBC六个步骤

1.加载驱动

 Class.forName(driver_class);

2.创建数据库连接

DriverManager.getConnection(url,user,password);

3.创建PreparedStatement

  PreparedStatement ps=connection.prepareStatement(sql);

4.执行sql语句

  rs=ps.executeQuery();

5.处理结果集

  while (rs.next()){

   rs.getObject();
}

6关闭连接(资源从内由外关闭)

  


/从内到外关闭
if (resultSet!=null){
resultSet.close();
}
if (preparedStatement!=null){
preparedStatement.close();
}
if (connection!=null){
connection.close();
}

 

JDBC

标签:cut   connect   结果   驱动   资源   man   创建数据库   exe   object   

原文地址:https://www.cnblogs.com/ruhua1/p/13955313.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!