QueryResult<T>
Object returned by SQL Query executions.
Extends
BaseQueryResult.Iterable<T,undefined>
Type Parameters
| Type Parameter | Default type |
|---|---|
T | SqliteRecord |
Properties
| Property | Type | Description | Inherited from |
|---|---|---|---|
array | T[] | Rows in this result set. | - |
insertId? | number | Represents the auto-generated row id if applicable. | BaseQueryResult.insertId |
rows? | ResultSet | If the query returned rows, the result set containing returned values. | - |
rowsAffected? | number | Number of affected rows reported by SQLite for a write query. When using the default client-side JSON-based view system, rowsAffected may be 0 for successful UPDATE and DELETE statements. Use a RETURNING clause and inspect rows when you need to confirm which rows changed. | BaseQueryResult.rowsAffected |