Delete the key if it exists. */
| 278 | |
| 279 | /* Delete the key if it exists. */ |
| 280 | void kvDel(sqlite3 *dbhandle, const char *key) { |
| 281 | sqlQuery(dbhandle,"DELETE FROM KeyValue WHERE key=?s",key); |
| 282 | } |
nothing calls this directly
no test coverage detected