Home

Getting Started

Utilities

Indexing

Omnidex

Development

Tutorials

Quick Links

 

sectionpage

ODXSQL - Commands

Syntax

Options

Example

 

ODXSQL

Special Characters

System Commands

Getting Help

Commands

SAVE SETTINGS

The SAVE SETTINGS command will save the current settings. If a filename is specified, the settings will be saved to that file. If no filename is specified, the settings will be saved in an internal buffer in ODXSQL that lasts only for the duration of the current ODXSQL session.

The saved settings can be restored using the RESTORE SETTINGS command.

 

Syntax

SAVE SETTINGS [[TO] filename] [WITH options]

SAVE SETTINGS
Required.

TO filename
Optional. filename is the output filespec. This can be a fully qualified or relative filespec. The TO keyword is optional. If omitted, the settings will be saved in an internal buffer that lasts only for the duration of the current ODXSQL session.

WITH options
Optional. A comma separated list of options to apply to this command.

 

Options

 

 

Example

The following example will save the settings to the default file in the current working directory:

> save settings

The following example will save the settings to a file named mysavefile.txt in the current working directory:

> save settings to mysavefile.txt

The following example will save the settings to a file named mysavefile.txt in the demodata directory, relative to the current working directory:

> save settings ../demodata/mysavefile.txt

The following example will save the settings to a file named mysavefile in the omnidex directory:

> save settings c:\omnidex\mysavefile

Top