TableOpen
This method opens a WinBIZ table.
The table is to be located in the current database.
The alias name is by default the same as the table physical name. If necessary, an alias for the table to be opened can be specified as second parameter.
Syntax:
oSession.TableOpen(<cTableName>, [<cAlias>])
Examples:
*/ Open the Addresses table. The table can then be accessed using its aliased name Addresses.
oSession.TableOpen("Adresses")
*/ Open the Addresses table. The table can then be accessed using its aliased name Customers.
oSession.TableOpen("Adresses", "Customers")