Home | History | Annotate | Download | only in sql

Lines Matching refs:statement

25  * A statement event that a PreparedStatement is closed
35 private PreparedStatement statement;
42 * @param statement
43 * the statement to be closed
47 public StatementEvent(PooledConnection con, PreparedStatement statement,
50 this.statement = statement;
59 * @param statement
60 * the statement to be closed
62 public StatementEvent(PooledConnection con, PreparedStatement statement) {
63 this(con, statement, null);
67 * Returns the statement of this event
70 return this.statement;