Class SQLController.ConnectionStatementState

java.lang.Object
org.datanucleus.store.rdbms.SQLController.ConnectionStatementState
Enclosing class:
SQLController

static class SQLController.ConnectionStatementState extends Object
State of a connection. Maintains an update statement in "wait" state. Stores the statement, the text, the current batch level on this statement, and whether it is processable right now.
  • Field Details

    • stmt

      The current update PreparedStatement.
    • stmtText

      String stmtText
      The text for the statement.
    • batchSize

      int batchSize
      Number of statements currently batched (1 or more means that this is batchable).
    • processable

      boolean processable
      Whether this statement has been allocated only, or whether it is processable now.
    • closeStatementOnProcess

      boolean closeStatementOnProcess
      Whether to close the statement on processing
  • Constructor Details

    • ConnectionStatementState

      ConnectionStatementState()
  • Method Details