Handbook
Glossary
bind-statement ( obj statement -- )
Vocabulary
db
Inputs
obj
an
object
statement
a
statement
Outputs
None
Word description
Sets the statement's
bind-params
and calls
bind-statement*
to do the database-specific bind. Sets
bound?
to true if binding succeeds.
Definition
USING:
accessors
kernel
;
IN:
db
:
bind-statement
( obj statement -- )
swap
>>bind-params
[
bind-statement*
]
keep
t
>>bound?
drop
;