CTDatabase.FindTable
Syntax
bool FindTable(String Name, StringBuilder Path)
bool FindTable(String Name, StringBuilder Path, out ulong uid)
bool FindTable(ulong uid, StringBuilder Name, StringBuilder Path)
Parameters
Description
Locates a table in a database. If the prototype FindTable(String Name, StringBuilder Path) is used, the table is searched by Name, and the method retrieves its Path. If the prototype FindTable(String Name, StringBuilder Path, out ulong uid) is used, the table is searched by Name, and the method retrieves its Path and uid. If the prototype FindTable(ulong uid, StringBuilder Name, StringBuilder Path) is used, the table is searched by uid, and the method retrieves its Name and Path.
Return
FindTable() returns true if the table is found, false otherwise.
See Also
FirstTable()