UltraLite SET OPTION statement

Use this statement to change the values of database options.

Syntax
SET OPTION option-name=option-value
option-name: identifier 
option-value: string, identifier, or number
Remarks

You can only set database options with this statement and properties cannot be modified after the database has been created. The exception to these rules isml_remote_id (see below).

You cannot specify whether an option is persistent or not. The way an option has been implemented in UltraLite determines whether it is a persistent or temporary option. Persistent options are stored in the sysuldata table. Temporary options are used only until the database stops running.

The only database option that can be unset is ml_remote_id. For example:

SET OPTION ml_remote_id=;

The result is that the ID is set to NULL.

See also
Example

The following statement sets the global_database_id option to 100:

SET OPTION global_database_id=100;