API reference › @evolu/common › Sqlite › SqliteExecResult
Defined in: packages/common/src/Sqlite.ts:256
Result of executing a SQLite query.
changes must be the number of rows the statement inserted, updated, or
deleted. An insert skipped by on conflict do nothing reports zero changes,
so callers can distinguish it from an inserted row.
Properties
changes
readonly changes: number;
Defined in: packages/common/src/Sqlite.ts:258
rows
readonly rows: readonly R[];
Defined in: packages/common/src/Sqlite.ts:257