An array containing references to all database objects used by the Navigator.

Property of

_app object

Description

Use the databases property to reference an array of database objects associated with the _app object. The default database, _app.databases[1], is the first element in that array.

To add a database to the array:

d = new database()

d.databaseName = "MyBDEAlias"

d.active = true

_app.databases.add(d)

To work with tables referenced by that alias:

_app.databases[2].copyTable( "Stuff", "CopyOfStuff" )