void=dbOpenTable(table: string)
The function opens table or request, that are included in the database file mdb. The function dbOpenTable is an alternative to the function dbActiveSQL. To acces the dates both, dbOpenTable and dbActiveSQL can be used.

Parameters
The function has one parameter, which is name of the table or request,that we want to open.

Note
If you want to work with more tables from mdb database, it is enough to call the functions dbRegistration and dbOpen only once when working with the first table.

Example - Director
global mdb
mdb.dbOpenTable( "data")

Example - Authorware
CallObject(mdb,"dbOpenTable","data")