Returns the name of the table identified by the specified table ID.
Visual Basic
Public Function GetTableName( _
ByVal tableID As Integer _
) As String
C#
public string GetTableName(
int tableID
);
tableID The ID of the table. The value must be in range [1,TableCount].
The table name as a string.
Table IDs may change during a schema upgrade. To correctly identify a table, access it by name or refresh the cached IDs after a schema upgrade.
ULException class - A SQL error occurred.