DictTable.Issql Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates whether the table is an SQL table.
public:
virtual bool Issql();
public virtual bool Issql ();
abstract member Issql : unit -> bool
override this.Issql : unit -> bool
Public Overridable Function Issql () As Boolean
Returns
true if the table is an SQL table; otherwise, false.
Remarks
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()));
}