Database settings
DB_CONNECTION
: This corresponds to the driver that will be supporting connections to the system database server DB_HOST
: The hostname or IP address of the system database server DB_PORT
: The connection port for the host given, or blank if the provider default is used DB_DATABASE
: The database name to connect to and where to place the system tables DB_USERNAME
: Credentials for the system database connection if required DB_PASSWORD
: Credentials for the system database connection if required DB_CHARSET
: The character set override if required. Defaults use utf8, except utf8mb4 for MySQL-based databases - may cause problems for pre-5.7.7 (MySQL) or pre-10.2.2 (MariaDB), if so, use utf8 DB_COLLATION
: The character set collation override if required. Defaults use utf8_unicode_ci, except utf8mb4_unicode_ci for MySQL-based database - may cause problems for pre-5.7.7 (MySQL) or pre-10.2.2 (MariaDB), if so, use utf8_unicode_ci DB_MAX_RECORDS_RETURNED
: This is the default number of records to return at once for database queries DF_SQLITE_STORAGE
: This is the default location to store SQLite3 database files