MCPcopy Create free account
hub / github.com/wyouflf/xUtils3 / close

Method close

xutils/src/main/java/org/xutils/db/DbManagerImpl.java:474–480  ·  view source on GitHub ↗

关闭数据库. 同一个库的是单实例的, 尽量不要调用这个方法, 会自动释放.

()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

containsKeyMethod · 0.80
closeMethod · 0.65
removeMethod · 0.45

Tested by

no test coverage detected