public interface IscStmtHandle
isc_stmt_handle
describes a handle to a database statement.Modifier and Type | Field and Description |
---|---|
static int |
TYPE_COMMIT |
static int |
TYPE_DDL |
static int |
TYPE_DELETE |
static int |
TYPE_EXEC_PROCEDURE |
static int |
TYPE_GET_SEGMENT |
static int |
TYPE_INSERT |
static int |
TYPE_PUT_SEGMENT |
static int |
TYPE_ROLLBACK |
static int |
TYPE_SELECT |
static int |
TYPE_SELECT_FOR_UPDATE |
static int |
TYPE_SET_GENERATOR |
static int |
TYPE_START_TRANS |
static int |
TYPE_UNKNOWN |
static int |
TYPE_UPDATE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getExecutionPlan()
Get the execution plan from the statement.
|
XSQLDA |
getInSqlda()
Get the input data structure that contains data that is put into
the statement.
|
XSQLDA |
getOutSqlda()
Get the output data structure that contains data that is retrieved
from the statement.
|
int |
getStatementType()
Get the statement type.
|
boolean |
isAllRowsFetched()
Retrieve whether all rows have been fetched of the rows selected
by executing this statement.
|
static final int TYPE_UNKNOWN
static final int TYPE_SELECT
static final int TYPE_INSERT
static final int TYPE_UPDATE
static final int TYPE_DELETE
static final int TYPE_DDL
static final int TYPE_GET_SEGMENT
static final int TYPE_PUT_SEGMENT
static final int TYPE_EXEC_PROCEDURE
static final int TYPE_START_TRANS
static final int TYPE_COMMIT
static final int TYPE_ROLLBACK
static final int TYPE_SELECT_FOR_UPDATE
static final int TYPE_SET_GENERATOR
XSQLDA getInSqlda()
XSQLDA getOutSqlda()
boolean isAllRowsFetched()
true
if all rows have been fetched,
false
otherwisejava.lang.String getExecutionPlan()
null
if the execution plan was
not fetched from the server.int getStatementType()
TYPE_UNKNOWN
when no statement type was received from the server.Copyright © 2001-2019 Jaybird (Firebird JDBC/JCA) team. All rights reserved.