Interface EngineType


public interface EngineType
Derby engine types. Enumerate different modes the emmbedded engine (JDBC driver, SQL langauge layer and store) can run in. A module can query the monitor to see what type of service is being requested in terms of its engine type and then use that in a decision as to if it is suitable.
See Also:
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Property used to define the type of engine required.
    static final int
    Full database engine, the typical configuration.
    static final int
    A JDBC engine with a query language layer but no store layer executing.
  • Field Details

    • STANDALONE_DB

      static final int STANDALONE_DB
      Full database engine, the typical configuration.
      See Also:
    • STORELESS_ENGINE

      static final int STORELESS_ENGINE
      A JDBC engine with a query language layer but no store layer executing. More used a a building block for functionality built on top of a runtime SQL engine, such as syntax checking.
      See Also:
    • PROPERTY

      static final String PROPERTY
      Property used to define the type of engine required. If not set defaults to STANDALONE_DB.
      See Also: