Rowset.ds()
note
This article is about the ds() function of the Rowset object.
Rowset.ds()
Gets the data source that this row set belongs to.
Returns a UdbDsc object.
Syntax
$.udb( *ds* ).rowSet( *rowSet* ).ds()
The required ds parameter is a data source selector.
The required rowSet parameter is a rowset identifier.
Example
let rowSet = $.udb('EMP').rowSet('current');
console.log('This row set belongs to %s', rowSet.ds().name());