6.3.90.900
dbm
(require file/dbm) | package: dbm |
This package provides an interface to UNIX dbm databases for Racket.
Returns #t if v is a dbm structure, #f otherwise.
A dbm structure is a dictionary.
procedure
pth : path-string?
Opens the dbm file at pth, returning a handle.
procedure
(dbm-close! dbm) → void
dbm : dbm?
Closes the database handled by dbm.
procedure
(dbm-remove! dbm key) → void
dbm : dbm? key : string?
Removes key from dbm.
Sets key to val in dbm. Results in an error if key is present in dbm and replace? is not true.