diff --git a/bindings/java/src/org/sleuthkit/datamodel/SleuthkitCase.java b/bindings/java/src/org/sleuthkit/datamodel/SleuthkitCase.java index 5cbde51eccbbba7ca93bb8d4c8546e867ddfea01..aec77700f9293b1ef043304cc6d9bcf80bfe1df8 100644 --- a/bindings/java/src/org/sleuthkit/datamodel/SleuthkitCase.java +++ b/bindings/java/src/org/sleuthkit/datamodel/SleuthkitCase.java @@ -13358,7 +13358,7 @@ private final class SQLiteConnections extends ConnectionPool { SQLiteConfig config = new SQLiteConfig(); 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. SQLiteDataSource unpooled = new SQLiteDataSource(config); unpooled.setUrl("jdbc:sqlite:" + dbPath);