Subversion Repositories PHPX

Compare Revisions

Last modification

Ignore whitespace Rev 31 → Rev 32

/trunk/Db/ODBCDB.php
10,6 → 10,18
*/
protected $_alias;
/**
* (non-PHPdoc)
* @see Database::_leftQuote
*/
protected $_leftQuote = '[';
/**
* (non-PHPdoc)
* @see Database::_rightQuote
*/
protected $_rightQuote = ']';
public function __construct()
{
// $this->_connection = @odbc_connect($this->_alias, $this->_username, $this->_password);
16,13 → 28,4
$this->_dsn = 'odbc:' . $this->_alias;
parent::__construct();
}
/**
* (non-PHPdoc)
* @see Database::_escapeValueArray()
*/
protected function _escapeValueArray(array &$array, $suffix = '', array &$escape = array('`', '`'))
{
return parent::_escapeValueArray($array, $suffix, $escape);
}
}