Readonlyreader: booleanWhether this statement is a read-only query (SELECT).
Executes the statement and returns a lazy iterator over result rows. Useful for large result sets where loading all rows into memory at once is undesirable.
Positional bind parameters for the SQL statement.
A lazy iterator that yields one row at a time.
Executes a mutation statement (INSERT, UPDATE, DELETE) and returns metadata.
Positional bind parameters for the SQL statement.
An object with the number of rows affected and the last inserted row ID.
Represents a prepared SQLite statement that can be executed with parameters. Provides three execution modes: fetching all results, running a mutation, or lazily iterating results one row at a time.
IMPORT_PATH:
"@daiso-tech/core/utilities"