Interface EngineType

    • Field Summary

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

      • STANDALONE_DB

        static final int STANDALONE_DB
        Full database engine, the typical configuration.
        See Also:
        Constant Field Values
      • 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:
        Constant Field Values
      • PROPERTY

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