Store store = storeFactory.createStore(tableName);
Table table = store.openTable(tableName);
table.deleteAllRows();
Util.closeQuietly(table);
store.deleteTable(tableName);
}
public void openTable(String tableName) {
Verify.isNotNullOrEmpty(tableName);
this.tableName = tableName;