- java.lang.Object
-
- java.util.EventObject
-
- javax.sql.StatementEvent
-
- 实现的所有接口
-
Serializable
public class StatementEvent extends EventObject
AStatementEvent
发送到StatementEventListener
,已注册PooledConnection
。 当驾驶员判断为发生这种PreparedStatement
与所述相关联的PooledConnection
已被关闭或驱动程序确定是无效的。- 从以下版本开始:
- 1.6
- 另请参见:
- Serialized Form
-
-
字段汇总
-
声明的属性在类 java.util.EventObject
source
-
-
构造方法摘要
构造方法 构造器 描述 StatementEvent(PooledConnection con, PreparedStatement statement)
构造一个StatementEvent
具有指定PooledConnection
和PreparedStatement
。StatementEvent(PooledConnection con, PreparedStatement statement, SQLException exception)
构造一个StatementEvent
具有指定PooledConnection
,PreparedStatement
和SQLException
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 SQLException
getSQLException()
返回驱动程序即将抛出的SQLException
PreparedStatement
getStatement()
返回正在关闭或无效的PreparedStatement
-
声明方法的类 java.util.EventObject
getSource, toString
-
-
-
-
构造方法详细信息
-
StatementEvent
public StatementEvent(PooledConnection con, PreparedStatement statement)
构造一个StatementEvent
具有指定PooledConnection
和PreparedStatement
。 事件中包含的SQLException
默认为null。- 参数
-
con
-该PooledConnection
,该封闭的或无效PreparedStatement
相关联。 -
statement
- 正在关闭或无效的PreparedStatement
- 异常
-
IllegalArgumentException
- 如果con
为空。 - 从以下版本开始:
- 1.6
-
StatementEvent
public StatementEvent(PooledConnection con, PreparedStatement statement, SQLException exception)
构造一个StatementEvent
具有指定PooledConnection
,PreparedStatement
和SQLException
- 参数
-
con
-该PooledConnection
,该封闭的或无效PreparedStatement
相关联。 -
statement
- 正在关闭或无效的PreparedStatement
-
exception
- 驱动程序即将抛出到应用程序的SQLException
- 异常
-
IllegalArgumentException
- 如果con
为空。 - 从以下版本开始:
- 1.6
-
-
方法详细信息
-
getStatement
public PreparedStatement getStatement()
返回正在关闭或无效的PreparedStatement
- 结果
-
正在关闭或无效的
PreparedStatement
- 从以下版本开始:
- 1.6
-
getSQLException
public SQLException getSQLException()
返回驱动程序即将抛出的SQLException
- 结果
-
SQLException
司机即将投掷 - 从以下版本开始:
- 1.6
-
-