DictTable.isSql Method

Indicates whether the table is an SQL table.

Syntax

public boolean isSql()

Run On

Called

Return Value

Type: boolean
true if the table is an SQL table; otherwise, false.

Examples

The following example shows the retrieval of a value that indicates whether the table is an SQL table.

DictTable dt; 

 
dt = new DictTable(tablenum(CustTable)); 
if (dt) 
{ 
    print(strfmt("SQL table: %1", dt.isSql())); 
}

See Also

DictTable Class

DictTable.isBaseData Method

DictTable.isDefaultData Method

DictTable.isMap Method

DictTable.isSystemTable Method

DictTable.isTmp Method

DictTable.isView Method