Skip to main content
Version: 10.1

Rowset.isQueried()

note

This article is about the isQueried() function of the Rowset object.

Rowset.isQueried()

Checks whether or not the row set has been queried for records. This information can then be used to determine e.g. whether or not to query the row set.

Returns a Boolean.

Syntax

*row-set*.isQueried()

Example

var ds = $.udb("EMP");
if (ds.initialState() === "Query" && ds.rowSet('current').isQueried()) {
ds.executeQuery();
}