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

mysql-jdbc创建Statement与执行SQL

时间:2014-11-30 06:19:22      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   使用   sp   

使用JDBC创建Connection后,执行SQL需要先创建Statement

Statement stmt = connection.createStatement();

创建代码如下

public java.sql.Statement createStatement() throws SQLException {
        return createStatement(java.sql.ResultSet.TYPE_FORWARD_ONLY,
                java.sql.ResultSet.CONCUR_READ_ONLY);
    }


//默认查询结果 正向循环、只读查询结果
public java.sql.Statement createStatement(int resultSetType,
            int resultSetConcurrency) throws SQLException {
    //检查 connection是否关闭 checkClosed(); Statement stmt
= new com.mysql.jdbc.Statement(this, this.database); stmt.setResultSetType(resultSetType); stmt.setResultSetConcurrency(resultSetConcurrency); return stmt; }

执行查询SQL时:

ResultSet rs = stmt.executeQuery("test");

bubuko.com,布布扣

返回的ResultSet的数据存放在rowData中(protected RowData rowData)。

  执行next后是一个对象数组。

Statement的关闭方法,默认在关闭statment的同时,也关闭ResultSet。

public void close() throws SQLException {
		realClose(true, true);
	}

.....
this.isClosed = true;
.....

 

----------------------------------------------------

1、在DriverManager.getConnection的时候创建与mysql服务端的连接

2、Statement共用同一连接。

3、关闭Connection的时候才会关系连接,也会调用关系所有statement方法closeAllOpenStatements()。

 

mysql-jdbc创建Statement与执行SQL

标签:style   blog   http   io   ar   color   os   使用   sp   

原文地址:http://www.cnblogs.com/zyzl/p/4132372.html

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