This class represents a collection of all the tables of the database you connected to with the connection object.
This class is virtual. You cannot use it as a datatype.
This class is not creatable.
This class acts like a read-only array.
DIM hConnectionTables AS .ConnectionTables DIM hTable AS Table hTable = hConnectionTables [ Name AS String ] |
Returns a table from its name.
This class is enumerable with the FOR EACH keyword.
DIM hConnectionTables AS .ConnectionTables DIM hTable AS Table FOR EACH hTable IN hConnectionTables ... NEXT |
Enumerates all the tables of the database.