在c3p0连接池中设置SQLite连接属性

在c3p0连接池中设置SQLite连接属性,第1张

在c3p0连接池中设置SQLite连接属性

尝试

//put the imports where they really go, obviously...import javax.sql.*;import org.sqlite.*;import com.mchange.v2.c3p0.*;// configure SQLiteSQLiteConfig config = new org.sqlite.SQLiteConfig();config.setReadonly(true);config.setPageSize(4096); //in bytesconfig.setCacheSize(2000); //number of pagesconfig.setSynchronous(SQLiteConfig.SynchronousMode.OFF);config.setJournalMode(SQLiteConfig.JournalMode.OFF);// get an unpooled SQLite DataSource with the desired configurationSQLiteDataSource unpooled = new SQLiteDataSource( config );// get a pooled c3p0 DataSource that wraps the unpooled SQLite DataSourceDataSource pooled = DataSources.pooledDataSource( unpooled );

pooled
现在,数据源将是c3p0 PooledDataSource,它包装了已根据需要配置的SQLite未池化数据源。

参阅C3P0的文档,“使用数据源工厂类”,并为API文档数据源工厂类。

另请参阅我从此处下载的用于SQLite
JDBC的javadocs 来回答这个问题。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5462183.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存