Class AsyncQueryRunner.UpdateCallableStatement

java.lang.Object
org.apache.commons.dbutils.AsyncQueryRunner.UpdateCallableStatement
All Implemented Interfaces:
Callable<Integer>
Enclosing class:
AsyncQueryRunner

@Deprecated protected class AsyncQueryRunner.UpdateCallableStatement extends Object implements Callable<Integer>
Deprecated.
No longer used by this class. Will be removed in a future version. Class that encapsulates the continuation for update calls.
  • Field Details

    • sql

      private final String sql
      Deprecated.
    • params

      private final Object[] params
      Deprecated.
    • conn

      private final Connection conn
      Deprecated.
    • closeConn

      private final boolean closeConn
      Deprecated.
    • ps

      private final PreparedStatement ps
      Deprecated.
  • Constructor Details

    • UpdateCallableStatement

      public UpdateCallableStatement(Connection conn, boolean closeConn, PreparedStatement ps, String sql, Object... params)
      Deprecated.
      Parameters:
      conn - The connection to use for the batch call.
      closeConn - True if the connection should be closed, false otherwise.
      ps - The PreparedStatement to be executed.
      sql - The SQL statement to execute.
      params - An array of query replacement parameters. Each row in this array is one set of batch replacement values.
  • Method Details