Interface FirebirdCallableStatement

All Superinterfaces:
AutoCloseable, CallableStatement, FirebirdPreparedStatement, FirebirdStatement, PreparedStatement, Statement, Wrapper
All Known Implementing Classes:
FBCallableStatement

public interface FirebirdCallableStatement extends FirebirdPreparedStatement, CallableStatement
Firebird extension to the CallableStatement interface.
Author:
Roman Rokytskyy
  • Method Details

    • setSelectableProcedure

      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.
      Parameters:
      selectable - true if the called procedure is selectable.
      See Also:
    • isSelectableProcedure

      boolean isSelectableProcedure()
      Retrieve if this callable statement has been marked as selectable.

      Starting from Firebird 2.1, this value is set automatically from metadata stored in the database. Prior to Firebird 2.1, it must be set manually.

      Returns:
      true if the called procedure is selectable, false otherwise
      See Also: