org.firebirdsql.jdbc
Interface FirebirdResultSet
- public interface FirebirdResultSet
Field Summary |
static int |
CLOSE_CURSORS_AT_COMMIT
The constant indicating that ResultSet objects should be
closed when the method Connection.commit is called.
|
static int |
HOLD_CURSORS_OVER_COMMIT
The constant indicating that ResultSet objects should not
be closed when the method Connection.commit is called.
|
Method Summary |
java.lang.String |
getExecutionPlan()
Get execution plan for the specified result set. |
HOLD_CURSORS_OVER_COMMIT
public static final int HOLD_CURSORS_OVER_COMMIT
- The constant indicating that
ResultSet
objects should not
be closed when the method Connection.commit
is called.
Copied from JDBC 3.0 declaration to let code run in JDK 1.3.
- See Also:
- Constant Field Values
CLOSE_CURSORS_AT_COMMIT
public static final int CLOSE_CURSORS_AT_COMMIT
- The constant indicating that
ResultSet
objects should be
closed when the method Connection.commit
is called.
Copied from JDBC 3.0 declaration to let code run in JDK 1.3.
- See Also:
- Constant Field Values
getExecutionPlan
public java.lang.String getExecutionPlan()
throws java.sql.SQLException
- Get execution plan for the specified result set.
- Returns:
- execution plan for this query.
- Throws:
java.sql.SQLException
- if execution plan cannot be obtained or this result
set is already closed.- See Also:
FirebirdPreparedStatement.getExecutionPlan()
Copyright © 2001 David Jencks and other authors. All rights reserved.