Class SESSION_TYPE

Object
SESSION_TYPE

public final class SESSION_TYPE extends Object
Session type used on a CTSession.SetSessionType(int) call
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Allocate a new session making full usage of c-treeDB session and database dictionaries.
    static final int
    Allocate a new session for logon only.
    static final int
    Allocate a new session for c-treeACE SQL processing.
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • CTDB

      public static final int CTDB
      Allocate a new session making full usage of c-treeDB session and database dictionaries. With this session mode, a Session dictionary file must exist to perform a session logon and you must connect to a database before attempting to perform operation on tables.
      See Also:
    • CTREE

      public static final int CTREE
      Allocate a new session for logon only. No session or database dictionary files will be used. No database functions can be used with this session mode. Allocate table handles using the session handle.
      See Also:
    • SQL

      public static final int SQL
      Allocate a new session for c-treeACE SQL processing. This mode allows changes made at the c-treeDB level to be reflected at the c-treeACE SQL level without requiring an additional table import step; your tables are immediately available with the c-treeACE SQL interface.
      See Also:
  • Constructor Details

    • SESSION_TYPE

      public SESSION_TYPE()