程序包 com.mysql.cj

类 AbstractQuery

    • 字段详细资料

      • statementId

        protected int statementId
        Used to identify this statement when profiling.
      • charEncoding

        protected String charEncoding
        The character encoding to use (if available)
      • cancelTimeoutMutex

        protected Object cancelTimeoutMutex
        Mutex to prevent race between returning query results and noticing that query has been timed-out or cancelled.
      • timeoutInMillis

        protected int timeoutInMillis
        The timeout for a query
      • batchedArgs

        protected List<Object> batchedArgs
        Holds batched commands
      • resultSetType

        protected Resultset.Type resultSetType
        The type of this result set (scroll sensitive or in-sensitive)
      • fetchSize

        protected int fetchSize
        The number of rows to fetch at a time (currently ignored)
      • statementExecuting

        protected final AtomicBoolean statementExecuting
        Currently executing a statement?
      • currentDb

        protected String currentDb
        The database in use
      • clearWarningsCalled

        protected boolean clearWarningsCalled
        Has clearWarnings() been called?
    • 构造器详细资料