Bitmask flags controlling how the driver manager resolves a driver name.
These values correspond to the ADBC_LOAD_FLAG_* constants in the ADBC spec.
Flags can be combined with bitwise OR. When loadFlags is omitted in
ConnectOptions, LoadFlags.Default is used.
Example
// Only search system paths, disallow relative paths constdb = newAdbcDatabase({ driver:'sqlite', loadFlags:LoadFlags.SearchSystem, })
Bitmask flags controlling how the driver manager resolves a driver name.
These values correspond to the
ADBC_LOAD_FLAG_*constants in the ADBC spec. Flags can be combined with bitwise OR. WhenloadFlagsis omitted inConnectOptions,LoadFlags.Defaultis used.