DtoTable Object
An object representing a table in a database.
Properties
Collections
DtoColumns Collection
DtoIndexes Collection
Methods
None
Remarks
DtoTable object contains two collection objects: Columns and Indexes. All operations involving columns and indexes are accomplished using these objects.
To add a new table to a dictionary, use the AddTable method.
To remove a table from a dictionary, use the DropTable method.
Example
For an example of creating a new DtoTable object, see AddTable method.
Dim dictionary as new DtoDictionary
Dim table as new DtoTable
Dim result as DtoResult
Dim location as string
 
'determine file name of Mytable table
result = dictionary.Open("d:\MyDemodata")
 
For Each table In dictionary.Tables
If table.Name = "Mytable" Then
location = table.Location
End If
next
See Also
DtoTables Collection
DtoColumn Object
DtoIndex Object