Skip to main content
Version: 10.1

Rowset.clear()

note

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

Rowset.clear()

Clears all rows from the row set.

Returns the 'this' object.

Syntax

*row-set*.clear()

Example

$.udb().each(
function(index, ds) {
$.udb(ds).rowSet('current').clear();
}
);