Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns the table ID of the relation.
Syntax
public TableId table()
Run On
Called
Return Value
Type: TableId Extended Data Type
The table ID of the relation.
Examples
The following example shows the retrieval of the table ID for a relation.
Dictionary dict;
DictRelation dr;
dict = new Dictionary();
dr = new DictRelation(dict.tableName2Id("CustTable"));
print dr.table();