(Class<?> entityType)
| 38 | } |
| 39 | |
| 40 | @Override |
| 41 | public void dropTable(Class<?> entityType) throws DbException { |
| 42 | TableEntity<?> table = this.getTable(entityType); |
| 43 | if (!table.tableIsExists()) return; |
| 44 | execNonQuery("DROP TABLE \"" + table.getName() + "\""); |
| 45 | table.setTableCheckedStatus(false); |
| 46 | this.removeTable(entityType); |
| 47 | } |
| 48 | |
| 49 | @Override |
| 50 | public void dropDb() throws DbException { |
nothing calls this directly
no test coverage detected