Skip to content
Snippets Groups Projects
Commit 622f26d7 authored by Greg DiCristofaro's avatar Greg DiCristofaro
Browse files

update for changed method name

parent 27db15a5
No related branches found
No related tags found
No related merge requests found
...@@ -13358,7 +13358,7 @@ private final class SQLiteConnections extends ConnectionPool { ...@@ -13358,7 +13358,7 @@ private final class SQLiteConnections extends ConnectionPool {
   
SQLiteConfig config = new SQLiteConfig(); SQLiteConfig config = new SQLiteConfig();
config.setSynchronous(SQLiteConfig.SynchronousMode.OFF); // Reduce I/O operations, we have no OS crash recovery anyway. config.setSynchronous(SQLiteConfig.SynchronousMode.OFF); // Reduce I/O operations, we have no OS crash recovery anyway.
config.setReadUncommited(true); config.setReadUncommitted(true);
config.enforceForeignKeys(true); // Enforce foreign key constraints. config.enforceForeignKeys(true); // Enforce foreign key constraints.
SQLiteDataSource unpooled = new SQLiteDataSource(config); SQLiteDataSource unpooled = new SQLiteDataSource(config);
unpooled.setUrl("jdbc:sqlite:" + dbPath); unpooled.setUrl("jdbc:sqlite:" + dbPath);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment