Indicates the number of rows in a WddxRecordset instance.
object.getRowCount( )
| Parameter | Description |
|---|---|
|
object |
Instance name of a WddxRecordset object |
Integer. Returns the number of rows in the WddxRecordset instance.
Call this function before a looping construct to determine the number of rows in a record set.
This example calls the getRowCount function:
function dumpWddxRecordset(r)
{
// Get row count
nRows = r.getRowCount();
...
for (row = 0; row < nRows; ++row)
...