关闭数据库. 同一个库的是单实例的, 尽量不要调用这个方法, 会自动释放.
()
| 472 | * 同一个库的是单实例的, 尽量不要调用这个方法, 会自动释放. |
| 473 | */ |
| 474 | @Override |
| 475 | public void close() throws IOException { |
| 476 | if (DAO_MAP.containsKey(daoConfig)) { |
| 477 | DAO_MAP.remove(daoConfig); |
| 478 | this.database.close(); |
| 479 | } |
| 480 | } |
| 481 | |
| 482 | ///////////////////////////////////// exec sql ///////////////////////////////////////////////////// |
| 483 |
nothing calls this directly
no test coverage detected