getRow Method
Get the current row. The returned row is formatted as JavaScript object where every SELECT clause item becomes a property in the JavaScript object.
The SQL select clause item's name becomes the member name of the JavaScript object, with the first character lowered.
SQLite Type | JavaScript Type |
---|---|
SqliteValueType.Null | undefined |
SqliteValueType.Integer | number |
SqliteValueType.Double | number |
SqliteValueType.String | string |
SqliteValueType.Blob | Uint8Array |
getRow(): any
Returns - any
Defined in
- core/backend/src/SqliteStatement.ts Line 472
Last Updated: 14 November, 2024
Found something wrong, missing, or unclear on this page?Raise an issue in our repo.