Anyone using room database in kotlin? How do you c...
# android
k
Anyone using room database in kotlin? How do you clear all tables ?
stackoverflow 1
l
The same way you would clear any SQLite database, with
Context.deleteDatabase(name)
k
any link ? i saw something like db!!.clearAllTables()
l
I gave you the name of the method, please...