gdbm_store

This inserts or replaces data in the database with the key key.

gdbm_store name key content
  • name is the name of a gdbm database previously opened with gdbm_open.
  • If key already exists, then its data is replaced with content.
  • If key does not exist, then an error is generated.

This command returns an empty string.