Skip to main content
Version: 10.1

Rowset.rowCount()

note

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

Rowset.rowCount()

Returns the number of records that a row set currently contains. This is taking into account the records queried from the server, but also any records inserted/deleted on the client.

tip

Contrast with .dbCount().

Syntax

*row-set*.rowCount()

Example

var numRows = $.udb('EMP').rowSet('current').rowCount();