dblink == false) { $this->dblink = $this->{($pconnect ? '_connect' : '_pConnect')}($server, $user, $password, $database); if ($this->dblink == false) { $this->_error('DB-Link == false, cannot connect'); return false; } return true; } } /** * Abstract function that returns a database link after establishing a connection. This just * calls the function and does not do any checking * * @param string Server name * @param string User name * @param string Password * @param string Database name * * @return integer Database link */ protected abstract function _connect($server, $user, $password, $database); /** * Abstract function that returns a database link after establishing a connection. This just * calls the function and does not do any checking * * @param string Server name * @param string User name * @param string Password * @param string Database name * * @return resource Database link */ protected abstract function _pConnect($server, $user, $password, $database); // ################################################################### /** * Send a query to the open database link * * @param string Query string * * @return integer Result */ public function query($string) { $time = microtime(); $this->querystr = $string; $this->result = $this->_query($this->dblink, $string); if (!$this->result) { $this->_error('Invalid SQL query'); } $this->history[] = $history = array('query' => $string, 'time' => BSFunctions::FetchMicrotimeDiff($time), 'trace' => $this->registry->format_debug_trace(debug_backtrace())); if (defined('ISSO_SHOW_QUERIES_LIVE')) { if (constant('ISSO_SHOW_QUERIES_LIVE')) { print($this->_constructDebugQuery($history)); } } return $this->result; } /** * Abstract function that executes the query command on the database * * @param string Query string * * @return integer Result ID */ protected abstract function _query($query); // ################################################################### /** * Escape a string (depending on character set, if supported) * * @param string String to be escaped * * @return string Escaped string */ public function escapeString($string) { return $this->_escapeString($string); } /** * Abstract function that calls the escape_string() method * * @param string String to escape * * @return string Escaped string */ protected abstract function _escapeString($string); // ################################################################### /** * Escapes a binary string for insertion into the database * * @param string Unescaped data * * @return string Escaped binary data */ public function escapeBinary($binary) { return $this->_escapeBinary($binary); } /** * Abstract function that calls escape_binary() * * @param string Binary to escape * * @return string Escaped binary */ protected abstract function _escapeBinary($string); // ################################################################### /** * Unescapes a binary string that was fetched from the database * * @param string Escaped data * * @return string Unescaped binary data */ public function unescapeBinary($binary) { return $this->_unescapeBinary($binary); } /** * Abstract function that calls unescape_binary() * * @param string Escaped data * * @return string Data that has been unescaped */ protected abstract function _unescapeBinary($string); // ################################################################### /** * Fetch the query result as an array * * @param integer Result * @param bool Return an associative array? * * @return array A row of the query result */ public function fetchArray($result, $assoc = true) { return $this->{($assoc ? '_fetchAssocArray' : '_fetchRowArray')}($result); } /** * Abstract function that returns an associative array of given result * * @param integer Result * * @return array Result array */ protected abstract function _fetchAssocArray($result); /** * Abstract function that returns a row array of given result * * @param integer Result * * @return array Result array */ protected abstract function _fetchRowArray($result); // ################################################################### /** * Fetch the query result as an object * * @param integer Result * * @return object An object with the query result */ public function fetchObject($result) { return $this->_fetchObject($result); } /** * Abstract function that returns an object for a given result * * @param integer Result * * @return object Row object */ public abstract function _fetchObject($result); // ################################################################### /** * Send a query and return the first row of the results * * @param string Query string * @param string Result return function (in the database layer) * * @return mixed Results in variable formats */ public function queryFirst($string, $callback = 'fetchArray') { $resource = $this->query($string); if ($resource) { $return = $this->$callback($resource); $this->_freeResult($resource); return $return; } else { return false; } } // ################################################################### /** * Free the current query result * * @param integer Result */ public function freeResult($result) { $this->_freeResult($result); $this->result = null; $this->querystr = ''; } /** * Abstract function that frees a given result * * @param integer Result ID */ protected abstract function _freeResult($result); // ################################################################### /** * Fetch the unique ID of the record just inserted * * @return integer Insert-ID */ public function insertId() { return $this->_insertID(); } /** * Abstract function that returns the ID of the most recently-inserted * record * * @return integer Insertion ID */ protected abstract function _insertId(); // ################################################################### /** * Fetch the number of rows in the result * * @param integer Result * * @return integer Number of rows */ public function numRows($result) { return $this->_numRows($result); } /** * Abstract function that returns the number of rows in the result * * @param integer Result ID * * @return integer Number of rows */ protected abstract function _numRows($result); // ################################################################### /** * Fetch the number of rows affected by the query * * @param integer Result * * @return integer Number of affected rows */ public function affectedRows($result) { return $this->_affectedRows($result); } /** * Abstract function that returns the number of affected rows in the result * * @param integer Result ID * * @return integer Number of rows */ protected abstract function _affectedRows($result); // ################################################################### /** * Sends the command to start a transaction. This command should never * be reached as it's always overridden */ public abstract function transactionStart(); // ################################################################### /** * Sends the command to set this as a savepoint. This command should never * be reached as it's always overridden * * @param string Named savepoint */ public abstract function transactionSavepoint($name); // ################################################################### /** * Sends the command to rollback to a given savepoint. This command * should never be reached as it's always overridden * * @param string Named savepoint */ public abstract function transactionRollback($name = null); // ################################################################### /** * Sends the command to commit the entire transaction. This command * should never be reached as it's always overridden */ public abstract function transactionCommit(); // ################################################################### /** * Constructs a table of query information output that is used in some * other modules to display a list of queries. This merely formats * a DB->history array entry nicely * * @param array An entry from DB->history * * @return string A formatted table block */ protected function _constructDebugQuery($query) { $block = "Query:\n\n
" . htmlspecialchars($query['query']) . "
\n"; $block .= "\n\t\n\t\t"; $block .= "Time: $query[time]
\n\t\t
\n\t\t"; $block .= "Backtrace:\n\t\t
" . implode("
\n", $query['trace']) . "
\n\t\n"; return BSRegister::Message('Query Debug', $block, 1, true, false, 0); } // ################################################################### /** * Error wrapper for ISSO->message() * * @param string User defined error message */ protected function _error($message) { if ($this->showerrors) { if ($this->dblink) { $this->errnum = call_user_func($this->commands['error_num'], $this->dblink); $this->errstr = call_user_func($this->commands['error_str'], $this->dblink); } $style['code'] = 'font-family: \'Courier New\', Courier, mono; font-size: 11px;'; $message_prepped = "
\n

"; $message_prepped .= "\n\t» Query:\n

" . htmlspecialchars($this->querystr) ."
\n
"; $message_prepped .= "\n\t» Error Number: " . $this->errnum . "\n
"; $message_prepped .= "\n\t» Error Message: " . $this->errstr . "\n
"; $message_prepped .= "\n\t» Additional Notes: " . $message . "\n
"; $message_prepped .= "\n\t» File: " . $_SERVER['PHP_SELF'] . "\n"; $message_prepped .= "\n

\n
"; BSRegister::Message('Database Error in `' . BSRegister::GetApplication() . '`', $message_prepped, 3); exit; } } } /*=====================================================================*\ || ################################################################### || # $HeadURL$ || # $Id$ || ################################################################### \*=====================================================================*/ ?>