How can I delete all entries on specific table using Room Persistence Library? I need to drop table, but I cannot to find any information how to do this.
Only when d
You can create a DAO method to do this.
@Dao interface MyDao { @Query("DELETE FROM myTableName") public void nukeTable(); }