Skip to main content
Version: 11.2

Rowset.busy()

note

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

Rowset.busy()

Gets the busy status of the row set.

Returns a boolean.

Syntax

$.udb( *ds* ).rowSet( *rowSet* ).busy()

The required ds parameter is a data source selector.

The required rowSet parameter is a rowset identifier.

Example

let rowSet = $.udb('EMP').rowSet('current');

if (!rowSet.busy()) {
rowSet.executeQuery();
}