@UNQDELETE[[u,]filename,key] : Delete a key/value pair from a UnQlite database.
u | Optional flag that the key is Unicode (UTF16) |
filename | Database opened with @UNQOPEN |
key | Key to delete |
Returns 0 if successful, or the error text if not.
Example:
echo Testing database delete
echo %@unqopen[rwc,test.db]
echo %@unqdelete[test.db,"key1"]
echo %@unqclose[test.db]