db-open ( db -- db-connection )
Furnace framework » Database library » Low-level database protocol

Next:db-close ( handle -- )


Vocabulary
db

Inputs
dba database configuration object


Outputs
db-connectiona db-connection


Word description
Opens a database using the configuration data stored in a database configuration object tuple. The database object now references a database handle that must be cleaned up. Therefore, it is better to use the with-db combinator than calling this word directly.

See also
db-close, with-db

Definition

GENERIC: db-open ( db -- db-connection )


Methods