low-level-bind ( statement -- )
Furnace framework » Database library » Low-level database protocol

Prev:bind-statement* ( statement -- )
Next:query-results ( query -- result-set )


Vocabulary
db

Inputs
statementa statement


Outputs
None

Word description
For use with prepared statements, methods on this word should bind the datatype in the SQL spec to its identifier in the SQL string. To name bound variables, SQLite uses identifiers in the form of :name, while PostgreSQL uses increasing numbers beginning with a dollar sign, e.g. $1.

Definition

GENERIC: low-level-bind ( statement -- )


Methods