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

String
getExecutionPlan()
Get execution plan for the specified result set.

Field Details

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.
Field Value:
2

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.
Field Value:
1

Method Details

getExecutionPlan

public String getExecutionPlan()
            throws SQLException
Get execution plan for the specified result set.
Returns:
execution plan for this query.

Copyright B) 2001 David Jencks and other authors. All rights reserved.