CTDatabase.FirstTable
Syntax
bool FirstTable(StringBuilder Name, StringBuilder Path)
Parameters
Description
Locates the first table in a database.
Return
FirstTable() returns true if one table is found, no otherwise.
Example
aDatabase.Connect();
aDatabase.FirstTable(tbname, tbpath);
do
{ Console.Write("\ntable name: {0}",tbname.ToString()); }
while (NextTable(tbname, tbpath);
See Also
FindTable(), GetFirstActive(), NextDaTable()