Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ data class DatabaseConfiguration(
val pageSize: Int? = null,
val basePath: String? = null,
val synchronousFlag: SynchronousFlag? = null,
val recursiveTriggers: Boolean = false
val recursiveTriggers: Boolean = false,
val lookasideSlotSize: Int = -1,
val lookasideSlotCount: Int = -1,
)
data class Logging(
val logger: Logger = WarningLogger,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ class NativeDatabaseManager(private val path:String,
"sqliter",
false,
false,
-1,
-1,
configuration.extendedConfig.lookasideSlotSize,
configuration.extendedConfig.lookasideSlotCount,
configuration.extendedConfig.busyTimeout,
configuration.loggingConfig.logger,
configuration.loggingConfig.verboseDataCalls
Expand Down