StatementEventpublic class StatementEvent extends EventObject Represents some event happening within a prepared statement.
Currently, the only event that ever happens is the statement gets
closed by the application.
Last Modified $Date$ |
Fields Summary |
---|
private String | sqlThe SQL for the prepared statement. |
Constructors Summary |
---|
public StatementEvent(String sql, PreparedStatement stmt)Constructs a new statement event for the prepared statement
with the specified SQL.
super(stmt);
this.sql = sql;
|
|