Icon LoadRows Method

procedure LoadRows(Append: Boolean=False)

procedure LoadRows(const RowData: String; Append: Boolean=False)

Usage

Available In: Client and Server Applications

Use this method to load the rows for a dataset. The Append parameter determines if the rows should be appended to the existing dataset rows, or if the dataset should be emptied before the rows are loaded.

For client applications, the rows are loaded from a JSON string parameter. Please see the Web Server Administration API - Databases topic for more information on how the JSON string should be formatted.

For server applications, the rows are loaded directly from the web server when this method is called, and no JSON string parameter is required.

Information The dataset must be open or an exception will be raised when this method is called.
Image