factory
fun factory(delegate: SupportSQLiteOpenHelper.Factory = FrameworkSQLiteOpenHelperFactory(), captureBindArgs: Boolean = true, maxArgChars: Int = 64): SupportSQLiteOpenHelper.Factory(source)
Parameters
delegate
the factory that actually opens the file. The framework one unless you are already using something else, such as Requery.
capture Bind Args
record the values bound to ? placeholders. On by default, because a write with its values stripped tells you almost nothing. Turn it off if the database holds data you would rather not have in a trace at all; the SQL and the timings still come through.
max Arg Chars
per-value truncation. Blobs are never included, only their size.