UltraLite database options

Options are used to configure database behavior. Database options can be set or modified at any time. In UltraLite, options can be persistent or temporary. Persistent options are stored in the database in the sysuldata system table. Temporary option settings only persist while the database is running.

Option values are set by using the SET OPTION statement. For example, the following statement sets the global_database_id option to 100:

SET OPTION global_database_id=100;

You can obtain the current setting of a database option by querying the value of the corresponding database property or by using the appropriate get database property method. For example, to obtain the current setting of the commit_flush_timeout database option, execute the following SQL statement:

SELECT DB_PROPERTY ( 'commit_flush_timeout' );

UltraLite commit_flush_count option [temporary]
UltraLite commit_flush_timeout option [temporary]
UltraLite global_database_id option
UltraLite ml_remote_id option
Change UltraLite persistent database option settings