add sample config for oracle connection

This commit is contained in:
Manuel Raynaud
2012-12-18 10:16:25 +01:00
parent 497c16d4b8
commit 647424d649
7 changed files with 53 additions and 12 deletions

View File

@@ -0,0 +1,18 @@
<?php
$conf = array (
'datasources' =>
array (
'thelia' =>
array (
'adapter' => THELIA_DB_ADAPTER,
'connection' =>
array (
'dsn' => THELIA_DB_DSN,
'user' => THELIA_DB_USER,
'password' => THELIA_DB_PASSWORD,
),
),
),
'generator_version' => '1.6.7',
);
return $conf;