DataTable.RowCount

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();

See Also

Copyright © 2010 - 2023 Emakin. All rights reserved.