mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Adding fic for #2651, fixes query creation problem in DboAdodb
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@5284 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
54159742c0
commit
0211a2a32a
1 changed files with 5 additions and 2 deletions
|
@ -93,8 +93,11 @@ class DboAdodb extends DboSource {
|
|||
}
|
||||
|
||||
$this->_adodb = NewADOConnection($adodb_driver);
|
||||
$adodb = &$this->_adodb;
|
||||
$this->connected = $adodb->$connect($config['host'], $config['login'], $config['password'], $config['database']);
|
||||
|
||||
$this->startQuote = $this->_adodb->nameQuote;
|
||||
$this->endQuote = $this->_adodb->nameQuote;
|
||||
|
||||
$this->connected = $this->_adodb->$connect($config['host'], $config['login'], $config['password'], $config['database']);
|
||||
return $this->connected;
|
||||
}
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue