Handbook
Glossary
sql-command ( sql -- )
Furnace framework
»
Database library
»
Low-level database tutorial
Next:
sql-query ( sql -- rows )
Vocabulary
db
Inputs
sql
a
string
Outputs
None
Word description
Executes an SQL string using the database in the
db-connection
symbol.
See also
sql-query
Definition
USING:
kernel
sequences
strings
;
IN:
db
:
sql-command
( sql -- )
dup
string?
[
(sql-command)
]
[
[
(sql-command)
]
each
]
if
;