Rel_sqlite3.Stmt
Low-level prepared statement interface.
type db = t
See Rel_sqlite3.t
.
val start : t -> 'r Rel_sql.Stmt.t -> ('r step, error) Stdlib.result
start s sb
starts the statement s
as bound by sb
. This resets the prepared statement and binds the arguments of sb
.
step s
is the next result in s
, or None
if the query has finished executing.