c3p0 连接池,DataSources 工厂,如何关闭池?

c3p0 connection pooling, DataSources factory, how do I close the pool?

我正在尝试使用 C3P0 for connection pooling with both PostgreSQL and SQLite. The PostgreSQL side works no problem. I've followed the directions here,但我不明白如何在用完后关闭 SQLite 端。

换句话说,在我使用 ComboPooledDataSource 的 PostgreSQL 端,我可以在我的 ComboPooledDataSource 上调用 .close(),如 here 所示。我觉得 SQLite 端也应该有一个 .close(),但我在 DataSource.

上没有看到一个

如何适当地关闭 SQLite 端?我什至需要吗?

来自 DataSources.pooledDataSource javadoc:

@return a DataSource that can be cast to a {@link PooledDataSource} if you are interested in pool statistics

并且PooledDataSourceclose方法。