This is the an interface to the gdbm library. This module might or
might not be available in your Pike depending on whether the gdbm library
was available on your system when Pike was compiled.
int create(string file);
int create(string file, string mode);
object(Gdbm) Gdbm();
object(Gdbm) Gdbm(string file);
object(Gdbm) Gdbm(string file, string mode);
r open database for reading w open database for writing c create database if it does not exist t overwrite existing database f fast mode
The fast mode prevents the database from synchronizing each change in the database immediately. This is dangerous because the database can be left in an unusable state if Pike is terminated abnormally.
The default mode is "rwc".