<prepared-statement> ( string in out -- statement )
Furnace framework » Database library » Low-level database protocol

Prev:<simple-statement> ( string in out -- statement )
Next:prepare-statement ( statement -- )


Vocabulary
db

Inputs
stringa string
ina sequence
outa sequence


Outputs
statementa statement


Word description
Makes a new prepared statement object from the given parameters. A prepared statement's parameters will be escaped by the database backend to avoid SQL injection attacks. Prepared statements should be preferred over simple statements.

Definition

HOOK: <prepared-statement> db-connection
( string in out -- statement )


Methods