Class ProcedureStatement

All Implemented Interfaces:
AutoCloseable, CallableStatement, PreparedStatement, Statement, Wrapper

public class ProcedureStatement extends BaseCallableStatement implements CallableStatement
Procedure callable statement
  • Constructor Details

    • ProcedureStatement

      public ProcedureStatement(Connection con, String sql, String databaseName, String procedureName, ClosableLock lock, boolean canUseServerTimeout, boolean canUseServerMaxRows, boolean canCachePrepStmts, int resultSetType, int resultSetConcurrency) throws SQLException
      Constructor
      Parameters:
      con - connection
      sql - sql
      databaseName - database
      procedureName - procedure
      lock - thread locker
      canUseServerTimeout - can use server timeout
      canUseServerMaxRows - can use server max rows
      canCachePrepStmts - can cache server prepared result
      resultSetType - result-set type
      resultSetConcurrency - concurrency
      Throws:
      SQLException - if any exception occurs
  • Method Details