Adding default configuration to Oracle driver

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@6448 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
nate 2008-02-11 01:13:13 +00:00
parent ba98d6cc12
commit 7248048d85

View file

@ -61,6 +61,19 @@ class DboOracle extends DboSource {
* @var boolean
*/
var $__transactionStarted = false;
/**
* Base configuration settings for MySQL driver
*
* @var array
*/
var $_baseConfig = array(
'persistent' => true,
'host' => 'localhost',
'login' => 'sysdba',
'password' => '',
'database' => 'cake',
'connect' => 'ociplogon'
);
/**
* Enter description here...
*