company logo

StorageTypes - Database storage types

Data can be stored in different database types. The selected storage type determines the way of storing data.

Enumarators overview

  • MySQL (2) - Data stored in a MySQL database
  • ODABA (1) - Data stored in an ODABA database
  • ORACLE (3) - Data stored in an ORACLE database
  • SQLServer (4) - Data stored in a Microsoft SQL Server database
  • UndefinedStorage (0) - Storage type not defined
  • XMLDatabase (5) - Data stored in an XML database

Enumerator details

  1. UndefinedStorage - Storage type not defined
    Code: 0
    to list
  2. ODABA - Data stored in an ODABA database
    Code: 1
    to list
  3. MySQL - Data stored in a MySQL database

    The instance data is stored in a MySQL database. Connection information to the database has to be passed in the CONNECTION option, which might be defined in the configuration or ini-file. The object relation mapper is defined as the database file name.

    Code: 2
    to list
  4. ORACLE - Data stored in an ORACLE database
    Code: 3
    to list
  5. SQLServer - Data stored in a Microsoft SQL Server database
    Code: 4
    to list
  6. XMLDatabase - Data stored in an XML database
    Code: 5
    to list