Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Overview

Returns the number of rows in data table.

number myDataTable.RowCount()

Remarks

Getting a specified table from the database, and finding how many rows are contained:

Example

var table = $Database.Get({
    Parameters : {
        TargetSchema : 'MySchema',
        TargetTable : 'MyTable'
    }
});
var num_of_rows = table.RowCount();
  • No labels