Database Manager

Functions for Databases

OpenDBConnection procedure

Since version 5.12.8335.0

Connects to a database.

Synopsis

OpenDBConnection("MyDatabase\")
OpenDBConnection("MyTable")
OpenDBConnection(2)

Parameters

Name

Type

Required?

Description

name_or_index

string

yes

The name of the table, the name of the database (terminated with a backslash), or the index of the table in the list of tables.

Returns

Nothing.

CloseDBConnection procedure

Since version 5.12.8335.0

Disconnects a database.

Synopsis

CloseDBConnection("MyDatabase\")
CloseDBConnection("MyTable")
CloseDBConnection(2)

Parameters

Name

Type

Required?

Description

name_or_index

string

yes

The name of the table, the name of the database (terminated with a backslash), or the index of the table in the list of tables.

Returns

Nothing.