Database¶
Section [Database]¶
- Database.DuplicateCreds: bool = false¶
Maps to
db.connector.DatabaseConfig.db_duplicate_credsControls whether duplicate credentials are stored. If set to
false, each unique credential set is stored and displayed only once.
- Database.Dialect: str = "sqlite"¶
Maps to
db.connector.DatabaseConfig.db_dialectAdded in version 1.0.0.dev14.
Specifies the SQL dialect to use
- Database.Driver: str = "pysqlite"¶
Maps to
db.connector.DatabaseConfig.db_driverAdded in version 1.0.0.dev14.
Specifies the SQL driver (external packages allowed) to be used for the database connection. Additional third-party packages must be installed before they can be used.
- Database.Path: RelativePath | RelativeWorkspacePath | AbsolutePath = "Dementor.db"¶
Maps to
db.connector.DatabaseConfig.db_pathAdded in version 1.0.0.dev14.
Specifies the database filename. Not used if
Urlis set.
- Database.Url: str¶
Maps to
db.connector.DatabaseConfig.db_raw_pathAdded in version 1.0.0.dev14.
Custom database connection URL to use. Overwrites driver, dialect and path.
- Database.Directory: str¶
Removed in version 1.0.0.dev14.
DEPRECATED Specifies a custom directory for storing the database. This setting overrides the default directory configured via
Dementor.Workspace.
- Database.Name: str = "Dementor.db"¶
Removed in version 1.0.0.dev14.
DEPRECATED Sets the filename of the database to be used.