deletedeleteautotoc_md0title: ArmaRAMDb - Delete Key icon: mdi:file-text-outline excerpt: Remove the specified key from RAMDb.ramdb_db_fnc_deleteDescriptionRemoves the specified key from the database. This function deletes the key-value pair completely from storage.Syntax[_key] call ramdb_db_fnc_delete
ParametersParameter Type Description _keyString Name of the key to delete from the database Return ValueNone. The operation runs asynchronously.ExamplesDelete a key in singleplayer or on the server:["playerData"] call ramdb_db_fnc_delete;
Delete a key on the server from a client:["playerData"] remoteExecCall ["ramdb_db_fnc_delete", 2, false];
NotesThis operation is permanent and cannot be undoneIf the key doesn't exist, the operation will have no effectThis function only affects specific keys, not hash tables or listsRelated Functionsramdb_db_fnc_get: Retrieves a value by keyramdb_db_fnc_set: Stores a value by keyramdb_db_fnc_scheduler: Processes the callback responseLinksDelete Key | Get Key | Set Key