jdbc执行Statement接口的步骤

Posted 卡拉瓦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jdbc执行Statement接口的步骤相关的知识,希望对你有一定的参考价值。

   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接口的步骤的主要内容,如果未能解决你的问题,请参考以下文章

JDBC

jdbc java数据库连接 3)Statement接口

JDBC

JDBC

JDBC接口介绍之Statement

JDBC Statement对象执行批量处理实例