org.firebirdsql.jdbc
Interface FirebirdCallableStatement
- CallableStatement, FirebirdPreparedStatement, FirebirdStatement, PreparedStatement, Statement
- AbstractCallableStatement
public interface FirebirdCallableStatement
Firebird extension to the java.sql.CallableStatement
interface.
TYPE_COMMIT , TYPE_DDL , TYPE_DELETE , TYPE_EXEC_PROCEDURE , TYPE_GET_SEGMENT , TYPE_INSERT , TYPE_PUT_SEGMENT , TYPE_ROLLBACK , TYPE_SELECT , TYPE_SELECT_FOR_UPDATE , TYPE_SET_GENERATOR , TYPE_START_TRANS , TYPE_UPDATE |
void | setSelectableProcedure(boolean selectable) - Mark this callable statement as a call of the selectable procedure.
|
setSelectableProcedure
public void setSelectableProcedure(boolean selectable)
Mark this callable statement as a call of the selectable procedure. By
default callable statement uses "EXECUTE PROCEDURE" SQL statement to
invoke stored procedures that return single row of output parameters or
a result set. In former case it retrieves only the first row of the
result set.
selectable
- true
if the called procedure is selectable.
Copyright B) 2001 David Jencks and other authors. All rights reserved.