JavaTM 2 Platform
Standard Ed. 6

javax.sql
類別 StatementEvent

java.lang.Object
  繼承者 java.util.EventObject
      繼承者 javax.sql.StatementEvent
所有已實作的介面:
Serializable

public class StatementEvent
extends EventObject

StatementEvent 被傳送給所有用 PooledConnection 註冊的 StatementEventListener。當驅動程序確定與 PooledConnection 關聯的 PreparedStatement 已經關閉或驅動程序確定它無效時,發生此事件。

從以下版本開始:
1.6
另請參見:
序列化表格

欄位摘要
 
從類別 java.util.EventObject 繼承的欄位
source
 
建構子摘要
StatementEvent(PooledConnection con, PreparedStatement statement)
          用指定的 PooledConnectionPreparedStatement 建構 StatementEvent
StatementEvent(PooledConnection con, PreparedStatement statement, SQLException exception)
          用指定的 PooledConnectionPreparedStatementSQLException 建構 StatementEvent
 
方法摘要
 SQLException getSQLException()
          返回驅動程序將要拋出的 SQLException
 PreparedStatement getStatement()
          返回正在關閉或無效的 PreparedStatement
 
從類別 java.util.EventObject 繼承的方法
getSource, toString
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

建構子詳細資訊

StatementEvent

public StatementEvent(PooledConnection con,
                      PreparedStatement statement)
用指定的 PooledConnectionPreparedStatement 建構 StatementEvent。包含在事件中的 SQLException 預設為 null。

參數:
con - 與已關閉或無效的 PreparedStatement 關聯的 PooledConnection
statement - 正在關閉的或無效的 PreparedStatement

拋出:
IllegalArgumentException - 如果 con 為 null。
從以下版本開始:
1.6

StatementEvent

public StatementEvent(PooledConnection con,
                      PreparedStatement statement,
                      SQLException exception)
用指定的 PooledConnectionPreparedStatementSQLException 建構 StatementEvent

參數:
con - 與已關閉或無效的 PreparedStatement 關聯的 PooledConnection
statement - 正在關閉的或無效的 PreparedStatement
exception - 驅動程序將要拋出給應用程序的 SQLException
拋出:
IllegalArgumentException - 如果 con 為 null。

從以下版本開始:
1.6
方法詳細資訊

getStatement

public PreparedStatement getStatement()
返回正在關閉或無效的 PreparedStatement

返回:
正在關閉的或無效的 PreparedStatement

從以下版本開始:
1.6

getSQLException

public SQLException getSQLException()
返回驅動程序將要拋出的 SQLException

返回:
驅動程序將要拋出的 SQLException

從以下版本開始:
1.6

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only