If you only require SQlite: create [application]/data/defaults.json as follows:
{
"db_type" : "sqlite"
}
[application]/data/db.json is also valid for these settings
{
"db_type":"mysql",
"db_host":"localhost",
"db_name":"database name",
"db_user":"user name",
"db_pass":"password"
}
note : this is only required if you DO NOT have the db.json, or which to overide the settings
Sample File:
static $DB_TYPE = 'mysql'; // effectively activates the default sql system
/**
* SQL Server database, username and passwords
**/
static $DB_HOST = 'localhost';
static $DB_NAME = 'database name';
static $DB_USER = 'user name';
static $DB_PASS = 'password';