In comments of Db.delete()
from version 1.0
, there is the following:
/** delete record/collection with given name*/.
So delete()
was actually deleting named records/collections. Of course latter can be perceived as tables.
One major change in the project (since version 1.0) was the conversion to kotlin
.
After this, a big refactoring seems to have happened on April 2018.
See entry: Commits on Apr 5, 2018
from https://github.com/jankotek/mapdb/commits/master/src/main/java/org/mapdb/DB.kt
In this day delete()
was removed from Db.tk
and a Store
containing put/update/delete
was created.
db.getStore().delete()
might be what you want to use.