DictField.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.
Returns a value that indicates whether the field is in the SQL database.
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 field is in the SQL database; otherwise, false.
Remarks
The following example determines whether the field is in the SQL database.
DictField df;
df = new DictField(tablenum(CustTable), fieldnum(CustTable, AccountNum));
if (df)
{
if (df.isSql())
{
print ("Field is in SQL database");
}
else
{
print ("Field is not in SQL database");
}
}