start to implement database part
This commit is contained in:
19
local/config/config_db.sqlite.php
Normal file
19
local/config/config_db.sqlite.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
// database acces configuration for sqlite
|
||||
// ---------------------------------------------
|
||||
|
||||
//database type : mysql, sqlite, pgsql, etc
|
||||
define('THELIA_DB_TYPE','sqlite');
|
||||
|
||||
// database login
|
||||
define('THELIA_BD_LOGIN', '__DB_LOGIN__');
|
||||
|
||||
// database password
|
||||
define('THELIA_BD_PASSWORD', '__DB_PASSWORD__');
|
||||
|
||||
|
||||
define('THELIA_DB_DSN','sqlite:__DB_FILE__');
|
||||
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user