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

jdbc执行Statement接口的步骤

时间:2016-10-30 13:35:39      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:word   jdbc   mysql   sql   步骤   catch   date   throw   sts   

   jdbc执行Statement接口的步骤如下:

    1)驱动注册程序:

Class.forName(com.mysql.jdbc.Driver);

    2)获取连接对象: 

Connection conn = DriverManager.getConnection(url,user,password);

    3)创建Statement对象:

 Statement stsm = conn.createStatement();

    4)准备sql语句:(静态的sql语句)

    5)执行sql语句:

stsm.executeUpdate(sql);

    6)输出:

    7)关闭连接:

 1 if (stsm != null) {
 2             try {
 3                 stsm.close();
 4             } catch (SQLException e) {
 5                 // TODO Auto-generated catch block
 6                 e.printStackTrace();
 7                 throw new RuntimeException(e);
 8             }
 9         }
10 
11         if (conn != null) {
12             try {
13                 conn.close();
14             } catch (SQLException e) {
15                 // TODO Auto-generated catch block
16                 e.printStackTrace();
17                 throw new RuntimeException(e);
18             }
19         }

 

  

jdbc执行Statement接口的步骤

标签:word   jdbc   mysql   sql   步骤   catch   date   throw   sts   

原文地址:http://www.cnblogs.com/LZL-student/p/6012739.html

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