OptionaldatabaseOptions?: Record<string, string>Database-specific options passed to the driver during initialization.
Database-specific options passed to the driver during initialization.
When driver is omitted, either uri or profile is required:
uri — passed directly to the driver manager (e.g. "sqlite::memory:", "profile://name")profile — bare connection profile name; the profile file specifies the driver
Driver to load. Accepts any of the following forms:
"sqlite","postgresql"— the driver manager searches for a matching manifest file (e.g.sqlite.toml) in the configured directories, then falls back toLD_LIBRARY_PATH/PATH."/usr/lib/libadbc_driver_sqlite.so".tomlfile (with or without the.tomlextension)."sqlite:file::memory:","postgresql://user:pass@host/db"— the driver name is the URI scheme and the remainder is passed as the connection URI."profile://my_profile"— loads a named profile from a.tomlfile found in profileSearchPaths or the default search directories.