mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
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:
parent
ba98d6cc12
commit
7248048d85
1 changed files with 13 additions and 0 deletions
|
@ -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...
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue