- Merge changes from MDB2's trunk
| | |
| | | // | Author: Lukas Smith <smith@pooteeweet.org> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: MDB2.php 292663 2009-12-26 18:21:46Z quipo $ |
| | | // $Id: MDB2.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | /** |
| | |
| | | */ |
| | | class MDB2 |
| | | { |
| | | // {{{ function setOptions(&$db, $options) |
| | | // {{{ function setOptions($db, $options) |
| | | |
| | | /** |
| | | * set option array in an exiting database object |
| | |
| | | * |
| | | * @access public |
| | | */ |
| | | function setOptions(&$db, $options) |
| | | static function setOptions($db, $options) |
| | | { |
| | | if (is_array($options)) { |
| | | foreach ($options as $option => $value) { |
| | |
| | | * @static |
| | | * @access public |
| | | */ |
| | | function classExists($classname) |
| | | static function classExists($classname) |
| | | { |
| | | if (version_compare(phpversion(), "5.0", ">=")) { |
| | | return class_exists($classname, false); |
| | | } |
| | | return class_exists($classname); |
| | | return class_exists($classname, false); |
| | | } |
| | | |
| | | // }}} |
| | |
| | | * |
| | | * @access public |
| | | */ |
| | | function loadClass($class_name, $debug) |
| | | static function loadClass($class_name, $debug) |
| | | { |
| | | if (!MDB2::classExists($class_name)) { |
| | | $file_name = str_replace('_', DIRECTORY_SEPARATOR, $class_name).'.php'; |
| | |
| | | } else { |
| | | $msg = "unable to load class '$class_name' from file '$file_name'"; |
| | | } |
| | | $err =& MDB2::raiseError(MDB2_ERROR_NOT_FOUND, null, null, $msg); |
| | | $err = MDB2::raiseError(MDB2_ERROR_NOT_FOUND, null, null, $msg); |
| | | return $err; |
| | | } |
| | | if (!MDB2::classExists($class_name)) { |
| | | $msg = "unable to load class '$class_name' from file '$file_name'"; |
| | | $err =& MDB2::raiseError(MDB2_ERROR_NOT_FOUND, null, null, $msg); |
| | | $err = MDB2::raiseError(MDB2_ERROR_NOT_FOUND, null, null, $msg); |
| | | return $err; |
| | | } |
| | | } |
| | |
| | | } |
| | | |
| | | // }}} |
| | | // {{{ function &factory($dsn, $options = false) |
| | | // {{{ function factory($dsn, $options = false) |
| | | |
| | | /** |
| | | * Create a new MDB2 object for the specified database type |
| | | * |
| | | * IMPORTANT: In order for MDB2 to work properly it is necessary that |
| | | * you make sure that you work with a reference of the original |
| | | * object instead of a copy (this is a PHP4 quirk). |
| | | * |
| | | * For example: |
| | | * $db =& MDB2::factory($dsn); |
| | | * ^^ |
| | | * And not: |
| | | * $db = MDB2::factory($dsn); |
| | | * |
| | | * @param mixed 'data source name', see the MDB2::parseDSN |
| | | * method for a description of the dsn format. |
| | |
| | | * |
| | | * @access public |
| | | */ |
| | | function &factory($dsn, $options = false) |
| | | static function factory($dsn, $options = false) |
| | | { |
| | | $dsninfo = MDB2::parseDSN($dsn); |
| | | if (empty($dsninfo['phptype'])) { |
| | | $err =& MDB2::raiseError(MDB2_ERROR_NOT_FOUND, |
| | | $err = MDB2::raiseError(MDB2_ERROR_NOT_FOUND, |
| | | null, null, 'no RDBMS driver specified'); |
| | | return $err; |
| | | } |
| | |
| | | } |
| | | |
| | | // }}} |
| | | // {{{ function &connect($dsn, $options = false) |
| | | // {{{ function connect($dsn, $options = false) |
| | | |
| | | /** |
| | | * Create a new MDB2_Driver_* connection object and connect to the specified |
| | | * database |
| | | * |
| | | * IMPORTANT: In order for MDB2 to work properly it is necessary that |
| | | * you make sure that you work with a reference of the original |
| | | * object instead of a copy (this is a PHP4 quirk). |
| | | * |
| | | * For example: |
| | | * $db =& MDB2::connect($dsn); |
| | | * ^^ |
| | | * And not: |
| | | * $db = MDB2::connect($dsn); |
| | | * ^^ |
| | | * |
| | | * @param mixed $dsn 'data source name', see the MDB2::parseDSN |
| | | * method for a description of the dsn format. |
| | |
| | | * @access public |
| | | * @see MDB2::parseDSN |
| | | */ |
| | | function &connect($dsn, $options = false) |
| | | static function connect($dsn, $options = false) |
| | | { |
| | | $db =& MDB2::factory($dsn, $options); |
| | | $db = MDB2::factory($dsn, $options); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | } |
| | | |
| | | // }}} |
| | | // {{{ function &singleton($dsn = null, $options = false) |
| | | // {{{ function singleton($dsn = null, $options = false) |
| | | |
| | | /** |
| | | * Returns a MDB2 connection with the requested DSN. |
| | | * A new MDB2 connection object is only created if no object with the |
| | | * requested DSN exists yet. |
| | | * |
| | | * IMPORTANT: In order for MDB2 to work properly it is necessary that |
| | | * you make sure that you work with a reference of the original |
| | | * object instead of a copy (this is a PHP4 quirk). |
| | | * |
| | | * For example: |
| | | * $db =& MDB2::singleton($dsn); |
| | | * ^^ |
| | | * And not: |
| | | * $db = MDB2::singleton($dsn); |
| | | * ^^ |
| | | * |
| | | * @param mixed 'data source name', see the MDB2::parseDSN |
| | | * method for a description of the dsn format. |
| | |
| | | * @access public |
| | | * @see MDB2::parseDSN |
| | | */ |
| | | function &singleton($dsn = null, $options = false) |
| | | static function singleton($dsn = null, $options = false) |
| | | { |
| | | if ($dsn) { |
| | | $dsninfo = MDB2::parseDSN($dsn); |
| | |
| | | } |
| | | } |
| | | } elseif (is_array($GLOBALS['_MDB2_databases']) && reset($GLOBALS['_MDB2_databases'])) { |
| | | $db =& $GLOBALS['_MDB2_databases'][key($GLOBALS['_MDB2_databases'])]; |
| | | return $db; |
| | | return $GLOBALS['_MDB2_databases'][key($GLOBALS['_MDB2_databases'])]; |
| | | } |
| | | $db =& MDB2::factory($dsn, $options); |
| | | $db = MDB2::factory($dsn, $options); |
| | | return $db; |
| | | } |
| | | |
| | |
| | | * @param array $arr2 |
| | | * @return boolean |
| | | */ |
| | | function areEquals($arr1, $arr2) |
| | | static function areEquals($arr1, $arr2) |
| | | { |
| | | if (count($arr1) != count($arr2)) { |
| | | return false; |
| | |
| | | /** |
| | | * load a file (like 'Date') |
| | | * |
| | | * @param string name of the file in the MDB2 directory (without '.php') |
| | | * @param string $file name of the file in the MDB2 directory (without '.php') |
| | | * |
| | | * @return string name of the file that was included |
| | | * @return string name of the file that was included |
| | | * |
| | | * @access public |
| | | */ |
| | | function loadFile($file) |
| | | static function loadFile($file) |
| | | { |
| | | $file_name = 'MDB2'.DIRECTORY_SEPARATOR.$file.'.php'; |
| | | if (!MDB2::fileExists($file_name)) { |
| | |
| | | * |
| | | * @access public |
| | | */ |
| | | function isError($data, $code = null) |
| | | static function isError($data, $code = null) |
| | | { |
| | | if (is_a($data, 'MDB2_Error')) { |
| | | if ($data instanceof MDB2_Error) { |
| | | if (null === $code) { |
| | | return true; |
| | | } elseif (is_string($code)) { |
| | | return $data->getMessage() === $code; |
| | | } else { |
| | | $code = (array)$code; |
| | | return in_array($data->getCode(), $code); |
| | | } |
| | | if (is_string($code)) { |
| | | return $data->getMessage() === $code; |
| | | } |
| | | return in_array($data->getCode(), (array)$code); |
| | | } |
| | | return false; |
| | | } |
| | |
| | | * @param mixed value to test |
| | | * |
| | | * @return bool whether $value is a MDB2 connection |
| | | * |
| | | * @access public |
| | | */ |
| | | function isConnection($value) |
| | | { |
| | | return is_a($value, 'MDB2_Driver_Common'); |
| | | return ($value instanceof MDB2_Driver_Common); |
| | | } |
| | | |
| | | // }}} |
| | |
| | | /** |
| | | * Tell whether a value is a MDB2 result |
| | | * |
| | | * @param mixed value to test |
| | | * @param mixed $value value to test |
| | | * |
| | | * @return bool whether $value is a MDB2 result |
| | | * @return bool whether $value is a MDB2 result |
| | | * |
| | | * @access public |
| | | * @access public |
| | | */ |
| | | function isResult($value) |
| | | { |
| | | return is_a($value, 'MDB2_Result'); |
| | | return ($value instanceof MDB2_Result); |
| | | } |
| | | |
| | | // }}} |
| | |
| | | /** |
| | | * Tell whether a value is a MDB2 result implementing the common interface |
| | | * |
| | | * @param mixed value to test |
| | | * @param mixed $value value to test |
| | | * |
| | | * @return bool whether $value is a MDB2 result implementing the common interface |
| | | * @return bool whether $value is a MDB2 result implementing the common interface |
| | | * |
| | | * @access public |
| | | */ |
| | | function isResultCommon($value) |
| | | static function isResultCommon($value) |
| | | { |
| | | return is_a($value, 'MDB2_Result_Common'); |
| | | return ($value instanceof MDB2_Result_Common); |
| | | } |
| | | |
| | | // }}} |
| | |
| | | */ |
| | | function isStatement($value) |
| | | { |
| | | return is_a($value, 'MDB2_Statement_Common'); |
| | | return ($value instanceof MDB2_Statement_Common); |
| | | } |
| | | |
| | | // }}} |
| | |
| | | * @access public |
| | | * @author Tomas V.V.Cox <cox@idecnet.com> |
| | | */ |
| | | function parseDSN($dsn) |
| | | static function parseDSN($dsn) |
| | | { |
| | | $parsed = $GLOBALS['_MDB2_dsninfo_default']; |
| | | |
| | |
| | | * |
| | | * @access public |
| | | */ |
| | | function fileExists($file) |
| | | static function fileExists($file) |
| | | { |
| | | // safe_mode does notwork with is_readable() |
| | | if (!@ini_get('safe_mode')) { |
| | |
| | | * @param int what error level to use for $mode & PEAR_ERROR_TRIGGER |
| | | * @param mixed additional debug info, such as the last query |
| | | */ |
| | | function MDB2_Error($code = MDB2_ERROR, $mode = PEAR_ERROR_RETURN, |
| | | function __construct($code = MDB2_ERROR, $mode = PEAR_ERROR_RETURN, |
| | | $level = E_USER_NOTICE, $debuginfo = null, $dummy = null) |
| | | { |
| | | if (null === $code) { |
| | |
| | | } |
| | | |
| | | // }}} |
| | | // {{{ function MDB2_Driver_Common() |
| | | |
| | | /** |
| | | * PHP 4 Constructor |
| | | */ |
| | | function MDB2_Driver_Common() |
| | | { |
| | | $this->destructor_registered = false; |
| | | $this->__construct(); |
| | | } |
| | | |
| | | // }}} |
| | | // {{{ destructor: function __destruct() |
| | | |
| | | /** |
| | |
| | | } |
| | | } |
| | | |
| | | $err =& PEAR::raiseError(null, $code, $mode, $options, $userinfo, 'MDB2_Error', true); |
| | | $err = PEAR::raiseError(null, $code, $mode, $options, $userinfo, 'MDB2_Error', true); |
| | | if ($err->getMode() !== PEAR_ERROR_RETURN |
| | | && isset($this->nested_transaction_counter) && !$this->has_transaction_error) { |
| | | $this->has_transaction_error =& $err; |
| | | $this->has_transaction_error = $err; |
| | | } |
| | | return $err; |
| | | } |
| | |
| | | } |
| | | |
| | | // }}} |
| | | // {{{ function &loadModule($module, $property = null, $phptype_specific = null) |
| | | // {{{ function loadModule($module, $property = null, $phptype_specific = null) |
| | | |
| | | /** |
| | | * loads a module |
| | |
| | | * |
| | | * @access public |
| | | */ |
| | | function &loadModule($module, $property = null, $phptype_specific = null) |
| | | function loadModule($module, $property = null, $phptype_specific = null) |
| | | { |
| | | if (!$property) { |
| | | $property = strtolower($module); |
| | |
| | | } |
| | | |
| | | if (!MDB2::classExists($class_name)) { |
| | | $err =& $this->raiseError(MDB2_ERROR_LOADMODULE, null, null, |
| | | $err = $this->raiseError(MDB2_ERROR_LOADMODULE, null, null, |
| | | "unable to load module '$module' into property '$property'", __FUNCTION__); |
| | | return $err; |
| | | } |
| | | $this->{$property} = new $class_name($this->db_index); |
| | | $this->modules[$module] =& $this->{$property}; |
| | | $this->modules[$module] = $this->{$property}; |
| | | if ($version) { |
| | | // this will be used in the connect method to determine if the module |
| | | // needs to be loaded with a different version if the server |
| | |
| | | $module = $this->options['modules'][$match[1]]; |
| | | $method = strtolower($match[2]).$match[3]; |
| | | if (!isset($this->modules[$module]) || !is_object($this->modules[$module])) { |
| | | $result =& $this->loadModule($module); |
| | | $result = $this->loadModule($module); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | * |
| | | * @access public |
| | | */ |
| | | function &standaloneQuery($query, $types = null, $is_manip = false) |
| | | function standaloneQuery($query, $types = null, $is_manip = false) |
| | | { |
| | | $offset = $this->offset; |
| | | $limit = $this->limit; |
| | |
| | | return $connection; |
| | | } |
| | | |
| | | $result =& $this->_doQuery($query, $is_manip, $connection, false); |
| | | $result = $this->_doQuery($query, $is_manip, $connection, false); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | $affected_rows = $this->_affectedRows($connection, $result); |
| | | return $affected_rows; |
| | | } |
| | | $result =& $this->_wrapResult($result, $types, true, false, $limit, $offset); |
| | | $result = $this->_wrapResult($result, $types, true, false, $limit, $offset); |
| | | return $result; |
| | | } |
| | | |
| | |
| | | * |
| | | * @access protected |
| | | */ |
| | | function &_doQuery($query, $is_manip = false, $connection = null, $database_name = null) |
| | | function _doQuery($query, $is_manip = false, $connection = null, $database_name = null) |
| | | { |
| | | $this->last_query = $query; |
| | | $result = $this->debug($query, 'query', array('is_manip' => $is_manip, 'when' => 'pre')); |
| | |
| | | } |
| | | $query = $result; |
| | | } |
| | | $err =& $this->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, |
| | | $err = $this->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, |
| | | 'method not implemented', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | * |
| | | * @access public |
| | | */ |
| | | function &exec($query) |
| | | function exec($query) |
| | | { |
| | | $offset = $this->offset; |
| | | $limit = $this->limit; |
| | |
| | | return $connection; |
| | | } |
| | | |
| | | $result =& $this->_doQuery($query, true, $connection, $this->database_name); |
| | | $result = $this->_doQuery($query, true, $connection, $this->database_name); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | * |
| | | * @access public |
| | | */ |
| | | function &query($query, $types = null, $result_class = true, $result_wrap_class = false) |
| | | function query($query, $types = null, $result_class = true, $result_wrap_class = false) |
| | | { |
| | | $offset = $this->offset; |
| | | $limit = $this->limit; |
| | |
| | | return $connection; |
| | | } |
| | | |
| | | $result =& $this->_doQuery($query, false, $connection, $this->database_name); |
| | | $result = $this->_doQuery($query, false, $connection, $this->database_name); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | | |
| | | $result =& $this->_wrapResult($result, $types, $result_class, $result_wrap_class, $limit, $offset); |
| | | $result = $this->_wrapResult($result, $types, $result_class, $result_wrap_class, $limit, $offset); |
| | | return $result; |
| | | } |
| | | |
| | | // }}} |
| | | // {{{ function &_wrapResult($result_resource, $types = array(), $result_class = true, $result_wrap_class = false, $limit = null, $offset = null) |
| | | // {{{ function _wrapResult($result_resource, $types = array(), $result_class = true, $result_wrap_class = false, $limit = null, $offset = null) |
| | | |
| | | /** |
| | | * wrap a result set into the correct class |
| | |
| | | * |
| | | * @access protected |
| | | */ |
| | | function &_wrapResult($result_resource, $types = array(), $result_class = true, |
| | | function _wrapResult($result_resource, $types = array(), $result_class = true, |
| | | $result_wrap_class = false, $limit = null, $offset = null) |
| | | { |
| | | if ($types === true) { |
| | |
| | | if ($result_class) { |
| | | $class_name = sprintf($result_class, $this->phptype); |
| | | if (!MDB2::classExists($class_name)) { |
| | | $err =& $this->raiseError(MDB2_ERROR_NOT_FOUND, null, null, |
| | | $err = $this->raiseError(MDB2_ERROR_NOT_FOUND, null, null, |
| | | 'result class does not exist '.$class_name, __FUNCTION__); |
| | | return $err; |
| | | } |
| | | $result = new $class_name($this, $result_resource, $limit, $offset); |
| | | if (!MDB2::isResultCommon($result)) { |
| | | $err =& $this->raiseError(MDB2_ERROR_NOT_FOUND, null, null, |
| | | $err = $this->raiseError(MDB2_ERROR_NOT_FOUND, null, null, |
| | | 'result class is not extended from MDB2_Result_Common', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | } |
| | | if ($result_wrap_class) { |
| | | if (!MDB2::classExists($result_wrap_class)) { |
| | | $err =& $this->raiseError(MDB2_ERROR_NOT_FOUND, null, null, |
| | | $err = $this->raiseError(MDB2_ERROR_NOT_FOUND, null, null, |
| | | 'result wrap class does not exist '.$result_wrap_class, __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | |
| | | $condition = ' WHERE '.implode(' AND ', $condition); |
| | | $query = 'DELETE FROM ' . $this->quoteIdentifier($table, true) . $condition; |
| | | $result =& $this->_doQuery($query, true, $connection); |
| | | $result = $this->_doQuery($query, true, $connection); |
| | | if (!PEAR::isError($result)) { |
| | | $affected_rows = $this->_affectedRows($connection, $result); |
| | | $insert = ''; |
| | |
| | | } |
| | | $values = implode(', ', $values); |
| | | $query = 'INSERT INTO '. $this->quoteIdentifier($table, true) . "($insert) VALUES ($values)"; |
| | | $result =& $this->_doQuery($query, true, $connection); |
| | | $result = $this->_doQuery($query, true, $connection); |
| | | if (!PEAR::isError($result)) { |
| | | $affected_rows += $this->_affectedRows($connection, $result);; |
| | | } |
| | |
| | | * @access public |
| | | * @see bindParam, execute |
| | | */ |
| | | function &prepare($query, $types = null, $result_types = null, $lobs = array()) |
| | | function prepare($query, $types = null, $result_types = null, $lobs = array()) |
| | | { |
| | | $is_manip = ($result_types === MDB2_PREPARE_MANIP); |
| | | $offset = $this->offset; |
| | |
| | | $regexp = '/^.{'.($position+1).'}('.$this->options['bindname_format'].').*$/s'; |
| | | $parameter = preg_replace($regexp, '\\1', $query); |
| | | if ($parameter === '') { |
| | | $err =& $this->raiseError(MDB2_ERROR_SYNTAX, null, null, |
| | | $err = $this->raiseError(MDB2_ERROR_SYNTAX, null, null, |
| | | 'named parameter name must match "bindname_format" option', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | */ |
| | | function _skipDelimitedStrings($query, $position, $p_position) |
| | | { |
| | | $ignores = $this->string_quoting; |
| | | $ignores = array(); |
| | | $ignores[] = $this->string_quoting; |
| | | $ignores[] = $this->identifier_quoting; |
| | | $ignores = array_merge($ignores, $this->sql_comments); |
| | | |
| | |
| | | if ($ignore['end'] === "\n") { |
| | | $end_quote = strlen($query) - 1; |
| | | } else { |
| | | $err =& $this->raiseError(MDB2_ERROR_SYNTAX, null, null, |
| | | $err = $this->raiseError(MDB2_ERROR_SYNTAX, null, null, |
| | | 'query with an unterminated text string specified', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | var $column_names; |
| | | |
| | | // }}} |
| | | // {{{ constructor: function __construct(&$db, &$result, $limit = 0, $offset = 0) |
| | | // {{{ constructor: function __construct($db, &$result, $limit = 0, $offset = 0) |
| | | |
| | | /** |
| | | * Constructor |
| | | */ |
| | | function __construct(&$db, &$result, $limit = 0, $offset = 0) |
| | | function __construct($db, &$result, $limit = 0, $offset = 0) |
| | | { |
| | | $this->db =& $db; |
| | | $this->result =& $result; |
| | | $this->db = $db; |
| | | $this->result = $result; |
| | | $this->offset = $offset; |
| | | $this->limit = max(0, $limit - 1); |
| | | } |
| | | |
| | | // }}} |
| | | // {{{ function MDB2_Result_Common(&$db, &$result, $limit = 0, $offset = 0) |
| | | |
| | | /** |
| | | * PHP 4 Constructor |
| | | */ |
| | | function MDB2_Result_Common(&$db, &$result, $limit = 0, $offset = 0) |
| | | { |
| | | $this->__construct($db, $result, $limit, $offset); |
| | | } |
| | | |
| | | // }}} |
| | |
| | | * |
| | | * @access public |
| | | */ |
| | | function &fetchRow($fetchmode = MDB2_FETCHMODE_DEFAULT, $rownum = null) |
| | | function fetchRow($fetchmode = MDB2_FETCHMODE_DEFAULT, $rownum = null) |
| | | { |
| | | $err =& $this->db->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, |
| | | $err = $this->db->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, |
| | | 'method not implemented', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | } |
| | | |
| | | // }}} |
| | | // {{{ function MDB2_Row(&$row) |
| | | |
| | | /** |
| | | * PHP 4 Constructor |
| | | * |
| | | * @param resource row data as array |
| | | */ |
| | | function MDB2_Row(&$row) |
| | | { |
| | | $this->__construct($row); |
| | | } |
| | | |
| | | // }}} |
| | | } |
| | | |
| | | // }}} |
| | |
| | | var $is_manip; |
| | | |
| | | // }}} |
| | | // {{{ constructor: function __construct(&$db, &$statement, $positions, $query, $types, $result_types, $is_manip = false, $limit = null, $offset = null) |
| | | // {{{ constructor: function __construct($db, $statement, $positions, $query, $types, $result_types, $is_manip = false, $limit = null, $offset = null) |
| | | |
| | | /** |
| | | * Constructor |
| | | */ |
| | | function __construct(&$db, &$statement, $positions, $query, $types, $result_types, $is_manip = false, $limit = null, $offset = null) |
| | | function __construct($db, $statement, $positions, $query, $types, $result_types, $is_manip = false, $limit = null, $offset = null) |
| | | { |
| | | $this->db =& $db; |
| | | $this->statement =& $statement; |
| | | $this->db = $db; |
| | | $this->statement = $statement; |
| | | $this->positions = $positions; |
| | | $this->query = $query; |
| | | $this->types = (array)$types; |
| | |
| | | $this->limit = $limit; |
| | | $this->is_manip = $is_manip; |
| | | $this->offset = $offset; |
| | | } |
| | | |
| | | // }}} |
| | | // {{{ function MDB2_Statement_Common(&$db, &$statement, $positions, $query, $types, $result_types, $is_manip = false, $limit = null, $offset = null) |
| | | |
| | | /** |
| | | * PHP 4 Constructor |
| | | */ |
| | | function MDB2_Statement_Common(&$db, &$statement, $positions, $query, $types, $result_types, $is_manip = false, $limit = null, $offset = null) |
| | | { |
| | | $this->__construct($db, $statement, $positions, $query, $types, $result_types, $is_manip, $limit, $offset); |
| | | } |
| | | |
| | | // }}} |
| | |
| | | * a MDB2 error on failure |
| | | * @access public |
| | | */ |
| | | function &execute($values = null, $result_class = true, $result_wrap_class = false) |
| | | function execute($values = null, $result_class = true, $result_wrap_class = false) |
| | | { |
| | | if (null === $this->positions) { |
| | | return $this->db->raiseError(MDB2_ERROR, null, null, |
| | |
| | | 'Binding Values failed with message: ' . $err->getMessage(), __FUNCTION__); |
| | | } |
| | | } |
| | | $result =& $this->_execute($result_class, $result_wrap_class); |
| | | $result = $this->_execute($result_class, $result_wrap_class); |
| | | return $result; |
| | | } |
| | | |
| | | // }}} |
| | | // {{{ function &_execute($result_class = true, $result_wrap_class = false) |
| | | // {{{ function _execute($result_class = true, $result_wrap_class = false) |
| | | |
| | | /** |
| | | * Execute a prepared query statement helper method. |
| | |
| | | * a MDB2 error on failure |
| | | * @access private |
| | | */ |
| | | function &_execute($result_class = true, $result_wrap_class = false) |
| | | function _execute($result_class = true, $result_wrap_class = false) |
| | | { |
| | | $this->last_query = $this->query; |
| | | $query = ''; |
| | |
| | | if ($this->is_manip) { |
| | | $result = $this->db->exec($query); |
| | | } else { |
| | | $result =& $this->db->query($query, $this->result_types, $result_class, $result_wrap_class); |
| | | $result = $this->db->query($query, $this->result_types, $result_class, $result_wrap_class); |
| | | } |
| | | return $result; |
| | | } |
| | |
| | | } |
| | | |
| | | // }}} |
| | | // {{{ function MDB2_Module_Common($db_index) |
| | | |
| | | /** |
| | | * PHP 4 Constructor |
| | | */ |
| | | function MDB2_Module_Common($db_index) |
| | | { |
| | | $this->__construct($db_index); |
| | | } |
| | | |
| | | // }}} |
| | | // {{{ function &getDBInstance() |
| | | // {{{ function getDBInstance() |
| | | |
| | | /** |
| | | * Get the instance of MDB2 associated with the module instance |
| | |
| | | * |
| | | * @access public |
| | | */ |
| | | function &getDBInstance() |
| | | function getDBInstance() |
| | | { |
| | | if (isset($GLOBALS['_MDB2_databases'][$this->db_index])) { |
| | | $result =& $GLOBALS['_MDB2_databases'][$this->db_index]; |
| | | $result = $GLOBALS['_MDB2_databases'][$this->db_index]; |
| | | } else { |
| | | $result =& MDB2::raiseError(MDB2_ERROR_NOT_FOUND, null, null, |
| | | $result = MDB2::raiseError(MDB2_ERROR_NOT_FOUND, null, null, |
| | | 'could not find MDB2 instance'); |
| | | } |
| | | return $result; |
| | |
| | | // | Daniel Convissor <danielc@php.net> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: mssql.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: mssql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Datatype/Common.php'; |
| | |
| | | */ |
| | | function getTypeDeclaration($field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getIntegerDeclaration($name, $field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getCLOBDeclaration($name, $field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getBLOBDeclaration($name, $field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function matchPattern($pattern, $operator = null, $field = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | $length = null; |
| | | break; |
| | | default: |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Author: Lukas Smith <smith@pooteeweet.org> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: mysql.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: mysql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Datatype/Common.php'; |
| | |
| | | */ |
| | | function getTypeDeclaration($field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getIntegerDeclaration($name, $field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | |
| | | $notnull = empty($field['notnull']) ? '' : ' NOT NULL'; |
| | | $unsigned = empty($field['unsigned']) ? '' : ' UNSIGNED'; |
| | | if (empty($default) && empty($notnull)) { |
| | | $default = ' DEFAULT NULL'; |
| | | } |
| | | $name = $db->quoteIdentifier($name, true); |
| | | return $name.' '.$this->getTypeDeclaration($field).$unsigned.$default.$notnull.$autoinc; |
| | | } |
| | |
| | | */ |
| | | function _getDecimalDeclaration($name, $field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function matchPattern($pattern, $operator = null, $field = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | $length = null; |
| | | break; |
| | | default: |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Author: Lukas Smith <smith@pooteeweet.org> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: mysqli.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: mysqli.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Datatype/Common.php'; |
| | |
| | | */ |
| | | function getTypeDeclaration($field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getIntegerDeclaration($name, $field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | |
| | | $notnull = empty($field['notnull']) ? '' : ' NOT NULL'; |
| | | $unsigned = empty($field['unsigned']) ? '' : ' UNSIGNED'; |
| | | if (empty($default) && empty($notnull)) { |
| | | $default = ' DEFAULT NULL'; |
| | | } |
| | | $name = $db->quoteIdentifier($name, true); |
| | | return $name.' '.$this->getTypeDeclaration($field).$unsigned.$default.$notnull.$autoinc; |
| | | } |
| | |
| | | */ |
| | | function _getDecimalDeclaration($name, $field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function matchPattern($pattern, $operator = null, $field = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | $length = null; |
| | | break; |
| | | default: |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function mapPrepareDatatype($type) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Author: Paul Cooper <pgc@ucecom.com> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: pgsql.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: pgsql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | |
| | | require_once 'MDB2/Driver/Datatype/Common.php'; |
| | | |
| | |
| | | */ |
| | | function getTypeDeclaration($field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getIntegerDeclaration($name, $field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | } |
| | | |
| | | $notnull = empty($field['notnull']) ? '' : ' NOT NULL'; |
| | | if (empty($default) && empty($notnull)) { |
| | | $default = ' DEFAULT NULL'; |
| | | } |
| | | $name = $db->quoteIdentifier($name, true); |
| | | return $name.' '.$this->getTypeDeclaration($field).$default.$notnull; |
| | | } |
| | |
| | | */ |
| | | function _quoteCLOB($value, $quote, $escape_wildcards) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | if (!$quote) { |
| | | return $value; |
| | | } |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function matchPattern($pattern, $operator = null, $field = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function patternEscapeString() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | $length = null; |
| | | break; |
| | | default: |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function mapPrepareDatatype($type) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Author: Lukas Smith <smith@pooteeweet.org> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: sqlite.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: sqlite.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Datatype/Common.php'; |
| | |
| | | */ |
| | | function getTypeDeclaration($field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getIntegerDeclaration($name, $field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | |
| | | $notnull = empty($field['notnull']) ? '' : ' NOT NULL'; |
| | | $unsigned = empty($field['unsigned']) ? '' : ' UNSIGNED'; |
| | | if (empty($default) && empty($notnull)) { |
| | | $default = ' DEFAULT NULL'; |
| | | } |
| | | $name = $db->quoteIdentifier($name, true); |
| | | return $name.' '.$this->getTypeDeclaration($field).$unsigned.$default.$notnull.$autoinc; |
| | | } |
| | |
| | | */ |
| | | function matchPattern($pattern, $operator = null, $field = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | $length = null; |
| | | break; |
| | | default: |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTypeDeclaration($field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getIntegerDeclaration($name, $field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getCLOBDeclaration($name, $field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getBLOBDeclaration($name, $field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | $length = null; |
| | | break; |
| | | default: |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Author: Frank M. Kromann <frank@kromann.info> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: mssql.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: mssql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Function/Common.php'; |
| | |
| | | * @return mixed a result handle or MDB2_OK on success, a MDB2 error on failure |
| | | * @access public |
| | | */ |
| | | function &executeStoredProc($name, $params = null, $types = null, $result_class = true, $result_wrap_class = false) |
| | | function executeStoredProc($name, $params = null, $types = null, $result_class = true, $result_wrap_class = false) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Author: Lukas Smith <smith@pooteeweet.org> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: mysql.php 253106 2008-02-17 18:54:08Z quipo $ |
| | | // $Id: mysql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Function/Common.php'; |
| | |
| | | * @return mixed a result handle or MDB2_OK on success, a MDB2 error on failure |
| | | * @access public |
| | | */ |
| | | function &executeStoredProc($name, $params = null, $types = null, $result_class = true, $result_wrap_class = false) |
| | | function executeStoredProc($name, $params = null, $types = null, $result_class = true, $result_wrap_class = false) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Author: Lukas Smith <smith@pooteeweet.org> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: mysqli.php 253106 2008-02-17 18:54:08Z quipo $ |
| | | // $Id: mysqli.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Function/Common.php'; |
| | |
| | | * @return mixed a result handle or MDB2_OK on success, a MDB2 error on failure |
| | | * @access public |
| | | */ |
| | | function &executeStoredProc($name, $params = null, $types = null, $result_class = true, $result_wrap_class = false) |
| | | function executeStoredProc($name, $params = null, $types = null, $result_class = true, $result_wrap_class = false) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | } |
| | | $query = 'CALL '.$name; |
| | | $query .= $params ? '('.implode(', ', $params).')' : '()'; |
| | | $result =& $db->query($query, $types, $result_class, $result_wrap_class); |
| | | $result = $db->query($query, $types, $result_class, $result_wrap_class); |
| | | if (!$multi_query) { |
| | | $db->setOption('multi_query', false); |
| | | } |
| | |
| | | // | Author: Paul Cooper <pgc@ucecom.com> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: pgsql.php 268669 2008-11-09 19:46:50Z quipo $ |
| | | // $Id: pgsql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | |
| | | require_once 'MDB2/Driver/Function/Common.php'; |
| | | |
| | |
| | | * @return mixed a result handle or MDB2_OK on success, a MDB2 error on failure |
| | | * @access public |
| | | */ |
| | | function &executeStoredProc($name, $params = null, $types = null, $result_class = true, $result_wrap_class = false) |
| | | function executeStoredProc($name, $params = null, $types = null, $result_class = true, $result_wrap_class = false) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Author: Lukas Smith <smith@pooteeweet.org> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: sqlite.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: sqlite.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Function/Common.php'; |
| | |
| | | */ |
| | | function replace($str, $from_str, $to_str) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | | |
| | | $error =& $db->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, |
| | | $error = $db->raiseError(MDB2_ERROR_UNSUPPORTED, null, null, |
| | | 'method not implemented', __FUNCTION__); |
| | | return $error; |
| | | } |
| | |
| | | * @return mixed a result handle or MDB2_OK on success, a MDB2 error on failure |
| | | * @access public |
| | | */ |
| | | function &executeStoredProc($name, $params = null, $types = null, $result_class = true, $result_wrap_class = false) |
| | | function executeStoredProc($name, $params = null, $types = null, $result_class = true, $result_wrap_class = false) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Lorenzo Alberton <l.alberton@quipo.it> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: mssql.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: mssql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Manager/Common.php'; |
| | |
| | | */ |
| | | function createDatabase($name, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function alterDatabase($name, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropDatabase($name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function truncateTable($name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function vacuum($table = null, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function alterTable($name, $changes, $check) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _dropConflictingIndices($table, $fields) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _dropConflictingConstraints($table, $fields) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getTableFieldDefaultConstraint($table, $field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTables() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | |
| | | */ |
| | | function listTableFields($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableIndexes($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listDatabases() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listUsers() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listFunctions() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableTriggers($table = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listViews() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropIndex($table, $name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableConstraints($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createSequence($seq_name, $start = 1) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropSequence($seq_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listSequences() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Author: Lukas Smith <smith@pooteeweet.org> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: mysql.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: mysql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Manager/Common.php'; |
| | |
| | | */ |
| | | function createDatabase($name, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function alterDatabase($name, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropDatabase($name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createTable($name, $fields, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropTable($name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function truncateTable($name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function vacuum($table = null, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function alterTable($name, $changes, $check) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listDatabases() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listUsers() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listFunctions() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableTriggers($table = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTables($database = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listViews($database = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableFields($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createIndex($table, $name, $definition) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropIndex($table, $name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableIndexes($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createConstraint($table, $name, $definition) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropConstraint($table, $name, $primary = false) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _createFKTriggers($table, $foreign_keys) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _dropFKTriggers($table, $fkname, $referenced_table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableConstraints($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createSequence($seq_name, $start = 1, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropSequence($seq_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listSequences($database = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Author: Lukas Smith <smith@pooteeweet.org> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: mysqli.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: mysqli.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Manager/Common.php'; |
| | |
| | | */ |
| | | function createDatabase($name, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function alterDatabase($name, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropDatabase($name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createTable($name, $fields, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropTable($name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function truncateTable($name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function vacuum($table = null, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function alterTable($name, $changes, $check) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listDatabases() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listUsers() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listFunctions() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableTriggers($table = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTables($database = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listViews($database = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableFields($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createIndex($table, $name, $definition) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropIndex($table, $name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableIndexes($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createConstraint($table, $name, $definition) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropConstraint($table, $name, $primary = false) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _createFKTriggers($table, $foreign_keys) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _dropFKTriggers($table, $fkname, $referenced_table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableConstraints($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createSequence($seq_name, $start = 1, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropSequence($seq_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listSequences($database = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Author: Paul Cooper <pgc@ucecom.com> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: pgsql.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: pgsql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | |
| | | require_once 'MDB2/Driver/Manager/Common.php'; |
| | | |
| | |
| | | */ |
| | | function createDatabase($name, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function alterDatabase($name, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropDatabase($name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function truncateTable($name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function vacuum($table = null, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function alterTable($name, $changes, $check) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listDatabases() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listUsers() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listViews() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableViews($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listFunctions() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableTriggers($table = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTables() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableFields($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableIndexes($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropConstraint($table, $name, $primary = false) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableConstraints($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createSequence($seq_name, $start = 1) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropSequence($seq_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listSequences() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Lorenzo Alberton <l.alberton@quipo.it> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: sqlite.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: sqlite.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Manager/Common.php'; |
| | |
| | | */ |
| | | function createDatabase($name, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropDatabase($name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getCreateTableQuery($name, $fields, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | } |
| | | // create triggers to enforce FOREIGN KEY constraints |
| | | if (!empty($options['foreign_keys'])) { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropTable($name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function vacuum($table = null, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function alterTable($name, $changes, $check, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | $query = 'INSERT INTO '.$db->quoteIdentifier($name_new, true); |
| | | $query.= '('.implode(', ', array_slice(array_keys($fields), 0, count($select_fields))).')'; |
| | | $query.=' VALUES (?'.str_repeat(', ?', (count($select_fields) - 1)).')'; |
| | | $stmt =& $db->prepare($query, null, MDB2_PREPARE_MANIP); |
| | | $stmt = $db->prepare($query, null, MDB2_PREPARE_MANIP); |
| | | if (PEAR::isError($stmt)) { |
| | | return $stmt; |
| | | } |
| | |
| | | */ |
| | | function listDatabases() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listUsers() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listViews() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableViews($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTables() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableFields($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableTriggers($table = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createIndex($table, $name, $definition) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropIndex($table, $name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableIndexes($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createConstraint($table, $name, $definition) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | return $this->alterTable($table, array(), false, array('primary' => null)); |
| | | } |
| | | |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _dropFKTriggers($table, $fkname, $referenced_table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableConstraints($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createSequence($seq_name, $start = 1) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropSequence($seq_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listSequences() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createDatabase($name, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function alterDatabase($name, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropDatabase($name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropTable($name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function truncateTable($name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function vacuum($table = null, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function alterTable($name, $changes, $check) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _dropConflictingIndices($table, $fields) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _dropConflictingConstraints($table, $fields) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getTableFieldDefaultConstraint($table, $field) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTables() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | |
| | | */ |
| | | function listTableFields($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableIndexes($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listDatabases() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listUsers() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listFunctions() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableTriggers($table = null) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listViews() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropIndex($table, $name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listTableConstraints($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getCreateTableQuery($name, $fields, $options = array()) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createSequence($seq_name, $start = 1) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function dropSequence($seq_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function listSequences() |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTableStatus($table) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | |
| | | function checkTable($tableName) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function createConstraint($table, $name, $definition) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Author: Paul Cooper <pgc@ucecom.com> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: pgsql.php 216444 2006-07-15 13:07:15Z lsmith $ |
| | | // $Id: pgsql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | |
| | | require_once 'MDB2/Driver/Native/Common.php'; |
| | | |
| | |
| | | */ |
| | | function deleteOID($OID) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Lorenzo Alberton <l.alberton@quipo.it> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: mssql.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: mssql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Reverse/Common.php'; |
| | |
| | | */ |
| | | function getTableFieldDefinition($table_name, $field_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTableIndexDefinition($table_name, $index_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTableConstraintDefinition($table_name, $constraint_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTriggerDefinition($trigger) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | return parent::tableInfo($result, $mode); |
| | | } |
| | | |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _mssql_field_flags($table, $column) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Author: Lukas Smith <smith@pooteeweet.org> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: mysql.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: mysql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Reverse/Common.php'; |
| | |
| | | */ |
| | | function getTableFieldDefinition($table_name, $field_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | $default = ''; |
| | | } |
| | | } |
| | | $definition[0] = array( |
| | | 'notnull' => $notnull, |
| | | 'nativetype' => preg_replace('/^([a-z]+)[^a-z].*/i', '\\1', $column['type']) |
| | | ); |
| | | $autoincrement = false; |
| | | if (!empty($column['extra']) && $column['extra'] == 'auto_increment') { |
| | | $autoincrement = true; |
| | | if (!empty($column['extra'])) { |
| | | if ($column['extra'] == 'auto_increment') { |
| | | $autoincrement = true; |
| | | } else { |
| | | $definition[0]['extra'] = $column['extra']; |
| | | } |
| | | } |
| | | $collate = null; |
| | | if (!empty($column['collation'])) { |
| | |
| | | $charset = preg_replace('/(.+?)(_.+)?/', '$1', $collate); |
| | | } |
| | | |
| | | $definition[0] = array( |
| | | 'notnull' => $notnull, |
| | | 'nativetype' => preg_replace('/^([a-z]+)[^a-z].*/i', '\\1', $column['type']) |
| | | ); |
| | | if (null !== $length) { |
| | | $definition[0]['length'] = $length; |
| | | } |
| | |
| | | */ |
| | | function getTableIndexDefinition($table_name, $index_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTableConstraintDefinition($table_name, $constraint_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getTableFKConstraintDefinition($table, $constraint_name, $definition) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | | //Use INFORMATION_SCHEMA instead? |
| | | //SELECT * |
| | | // FROM INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS |
| | | // WHERE CONSTRAINT_SCHEMA = '$dbname' |
| | | // AND TABLE_NAME = '$table' |
| | | // AND CONSTRAINT_NAME = '$constraint_name'; |
| | | $query = 'SHOW CREATE TABLE '. $db->escape($table); |
| | | $constraint = $db->queryOne($query, 'text', 1); |
| | | if (!PEAR::isError($constraint) && !empty($constraint)) { |
| | |
| | | } |
| | | $constraint_name_original = $constraint_name; |
| | | $constraint_name = $db->getIndexName($constraint_name); |
| | | $pattern = '/\bCONSTRAINT\s+'.$constraint_name.'\s+FOREIGN KEY\s+\(([^\)]+)\) \bREFERENCES\b ([^ ]+) \(([^\)]+)\)/i'; |
| | | $pattern = '/\bCONSTRAINT\s+'.$constraint_name.'\s+FOREIGN KEY\s+\(([^\)]+)\) \bREFERENCES\b ([^\s]+) \(([^\)]+)\)(?: ON DELETE ([^\s]+))?(?: ON UPDATE ([^\s]+))?/i'; |
| | | if (!preg_match($pattern, str_replace('`', '', $constraint), $matches)) { |
| | | //fallback to original constraint name |
| | | $pattern = '/\bCONSTRAINT\s+'.$constraint_name_original.'\s+FOREIGN KEY\s+\(([^\)]+)\) \bREFERENCES\b ([^ ]+) \(([^\)]+)\)/i'; |
| | | $pattern = '/\bCONSTRAINT\s+'.$constraint_name_original.'\s+FOREIGN KEY\s+\(([^\)]+)\) \bREFERENCES\b ([^\s]+) \(([^\)]+)\)(?: ON DELETE ([^\s]+))?(?: ON UPDATE ([^\s]+))?/i'; |
| | | } |
| | | if (preg_match($pattern, str_replace('`', '', $constraint), $matches)) { |
| | | $definition['foreign'] = true; |
| | |
| | | 'position' => $colpos++ |
| | | ); |
| | | } |
| | | $definition['onupdate'] = 'NO ACTION'; |
| | | $definition['ondelete'] = 'NO ACTION'; |
| | | $definition['ondelete'] = empty($matches[4]) ? 'RESTRICT' : strtoupper($matches[4]); |
| | | $definition['onupdate'] = empty($matches[5]) ? 'RESTRICT' : strtoupper($matches[5]); |
| | | $definition['match'] = 'SIMPLE'; |
| | | return $definition; |
| | | } |
| | |
| | | */ |
| | | function getTriggerDefinition($trigger) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | return parent::tableInfo($result, $mode); |
| | | } |
| | | |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | $db->loadModule('Datatype', null, true); |
| | | for ($i = 0; $i < $count; $i++) { |
| | | $res[$i] = array( |
| | | 'table' => $case_func(@mysql_field_table($resource, $i)), |
| | | 'name' => $case_func(@mysql_field_name($resource, $i)), |
| | | 'type' => @mysql_field_type($resource, $i), |
| | | 'length' => @mysql_field_len($resource, $i), |
| | | 'flags' => @mysql_field_flags($resource, $i), |
| | | 'table' => $case_func(@mysql_field_table($resource, $i)), |
| | | 'name' => $case_func(@mysql_field_name($resource, $i)), |
| | | 'type' => @mysql_field_type($resource, $i), |
| | | 'length' => @mysql_field_len($resource, $i), |
| | | 'flags' => @mysql_field_flags($resource, $i), |
| | | ); |
| | | if ($res[$i]['type'] == 'string') { |
| | | $res[$i]['type'] = 'char'; |
| | |
| | | // | Author: Lukas Smith <smith@pooteeweet.org> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: mysqli.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: mysqli.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Reverse/Common.php'; |
| | |
| | | */ |
| | | function getTableFieldDefinition($table_name, $field_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | $default = ''; |
| | | } |
| | | } |
| | | $definition[0] = array( |
| | | 'notnull' => $notnull, |
| | | 'nativetype' => preg_replace('/^([a-z]+)[^a-z].*/i', '\\1', $column['type']) |
| | | ); |
| | | $autoincrement = false; |
| | | if (!empty($column['extra']) && $column['extra'] == 'auto_increment') { |
| | | $autoincrement = true; |
| | | if (!empty($column['extra'])) { |
| | | if ($column['extra'] == 'auto_increment') { |
| | | $autoincrement = true; |
| | | } else { |
| | | $definition[0]['extra'] = $column['extra']; |
| | | } |
| | | } |
| | | $collate = null; |
| | | if (!empty($column['collation'])) { |
| | |
| | | $charset = preg_replace('/(.+?)(_.+)?/', '$1', $collate); |
| | | } |
| | | |
| | | $definition[0] = array( |
| | | 'notnull' => $notnull, |
| | | 'nativetype' => preg_replace('/^([a-z]+)[^a-z].*/i', '\\1', $column['type']) |
| | | ); |
| | | if (null !== $length) { |
| | | $definition[0]['length'] = $length; |
| | | } |
| | |
| | | */ |
| | | function getTableIndexDefinition($table_name, $index_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTableConstraintDefinition($table_name, $constraint_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _getTableFKConstraintDefinition($table, $constraint_name, $definition) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | | //Use INFORMATION_SCHEMA instead? |
| | | //SELECT * |
| | | // FROM INFORMATION_SCHEMA.REFERENTIAL_CONSTRAINTS |
| | | // WHERE CONSTRAINT_SCHEMA = '$dbname' |
| | | // AND TABLE_NAME = '$table' |
| | | // AND CONSTRAINT_NAME = '$constraint_name'; |
| | | $query = 'SHOW CREATE TABLE '. $db->escape($table); |
| | | $constraint = $db->queryOne($query, 'text', 1); |
| | | if (!PEAR::isError($constraint) && !empty($constraint)) { |
| | |
| | | } |
| | | $constraint_name_original = $constraint_name; |
| | | $constraint_name = $db->getIndexName($constraint_name); |
| | | $pattern = '/\bCONSTRAINT\s+'.$constraint_name.'\s+FOREIGN KEY\s+\(([^\)]+)\) \bREFERENCES\b ([^ ]+) \(([^\)]+)\)/i'; |
| | | $pattern = '/\bCONSTRAINT\s+'.$constraint_name.'\s+FOREIGN KEY\s+\(([^\)]+)\) \bREFERENCES\b ([^\s]+) \(([^\)]+)\)(?: ON DELETE ([^\s]+))?(?: ON UPDATE ([^\s]+))?/i'; |
| | | if (!preg_match($pattern, str_replace('`', '', $constraint), $matches)) { |
| | | //fallback to original constraint name |
| | | $pattern = '/\bCONSTRAINT\s+'.$constraint_name_original.'\s+FOREIGN KEY\s+\(([^\)]+)\) \bREFERENCES\b ([^ ]+) \(([^\)]+)\)/i'; |
| | | $pattern = '/\bCONSTRAINT\s+'.$constraint_name_original.'\s+FOREIGN KEY\s+\(([^\)]+)\) \bREFERENCES\b ([^\s]+) \(([^\)]+)\)(?: ON DELETE ([^\s]+))?(?: ON UPDATE ([^\s]+))?/i'; |
| | | } |
| | | if (preg_match($pattern, str_replace('`', '', $constraint), $matches)) { |
| | | $definition['foreign'] = true; |
| | |
| | | 'position' => $colpos++ |
| | | ); |
| | | } |
| | | $definition['onupdate'] = 'NO ACTION'; |
| | | $definition['ondelete'] = 'NO ACTION'; |
| | | $definition['ondelete'] = empty($matches[4]) ? 'RESTRICT' : strtoupper($matches[4]); |
| | | $definition['onupdate'] = empty($matches[5]) ? 'RESTRICT' : strtoupper($matches[5]); |
| | | $definition['match'] = 'SIMPLE'; |
| | | return $definition; |
| | | } |
| | |
| | | */ |
| | | function getTriggerDefinition($trigger) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | return parent::tableInfo($result, $mode); |
| | | } |
| | | |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Lorenzo Alberton <l.alberton@quipo.it> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: pgsql.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: pgsql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | |
| | | require_once 'MDB2/Driver/Reverse/Common.php'; |
| | | |
| | |
| | | */ |
| | | function getTableFieldDefinition($table_name, $field_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTableIndexDefinition($table_name, $index_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTableConstraintDefinition($table_name, $constraint_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTriggerDefinition($trigger) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | return parent::tableInfo($result, $mode); |
| | | } |
| | | |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Lorenzo Alberton <l.alberton@quipo.it> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: sqlite.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: sqlite.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | require_once 'MDB2/Driver/Reverse/Common.php'; |
| | |
| | | */ |
| | | function _getTableColumns($sql) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTableFieldDefinition($table_name, $field_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTableIndexDefinition($table_name, $index_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTableConstraintDefinition($table_name, $constraint_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTriggerDefinition($trigger) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | return parent::tableInfo($result, $mode); |
| | | } |
| | | |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTableFieldDefinition($table_name, $field_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTableIndexDefinition($table_name, $index_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTableConstraintDefinition($table_name, $constraint_name) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function getTriggerDefinition($trigger) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | return parent::tableInfo($result, $mode); |
| | | } |
| | | |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | */ |
| | | function _mssql_field_flags($table, $column) |
| | | { |
| | | $db =& $this->getDBInstance(); |
| | | $db = $this->getDBInstance(); |
| | | if (PEAR::isError($db)) { |
| | | return $db; |
| | | } |
| | |
| | | // | Author: Frank M. Kromann <frank@kromann.info> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: mssql.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: mssql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | // {{{ Class MDB2_Driver_mssql |
| | | /** |
| | |
| | | // }}} |
| | | // {{{ standaloneQuery() |
| | | |
| | | /** |
| | | /** |
| | | * execute a query as DBA |
| | | * |
| | | * @param string $query the SQL query |
| | |
| | | * @return mixed MDB2_OK on success, a MDB2 error on failure |
| | | * @access public |
| | | */ |
| | | function &standaloneQuery($query, $types = null, $is_manip = false) |
| | | function standaloneQuery($query, $types = null, $is_manip = false) |
| | | { |
| | | $user = $this->options['DBA_username']? $this->options['DBA_username'] : $this->dsn['username']; |
| | | $pass = $this->options['DBA_password']? $this->options['DBA_password'] : $this->dsn['password']; |
| | |
| | | $this->offset = $this->limit = 0; |
| | | $query = $this->_modifyQuery($query, $is_manip, $limit, $offset); |
| | | |
| | | $result =& $this->_doQuery($query, $is_manip, $connection, $this->database_name); |
| | | $result = $this->_doQuery($query, $is_manip, $connection, $this->database_name); |
| | | if (!PEAR::isError($result)) { |
| | | $result = $this->_affectedRows($connection, $result); |
| | | } |
| | |
| | | * @return result or error object |
| | | * @access protected |
| | | */ |
| | | function &_doQuery($query, $is_manip = false, $connection = null, $database_name = null) |
| | | function _doQuery($query, $is_manip = false, $connection = null, $database_name = null) |
| | | { |
| | | $this->last_query = $query; |
| | | $result = $this->debug($query, 'query', array('is_manip' => $is_manip, 'when' => 'pre')); |
| | |
| | | |
| | | $result = @mssql_query($query, $connection); |
| | | if (!$result) { |
| | | $err =& $this->raiseError(null, null, null, |
| | | $err = $this->raiseError(null, null, null, |
| | | 'Could not execute statement', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | function _checkSequence($seq_name) |
| | | { |
| | | $query = "SELECT * FROM $seq_name"; |
| | | $tableExists =& $this->_doQuery($query, true); |
| | | $tableExists = $this->_doQuery($query, true); |
| | | if (PEAR::isError($tableExists)) { |
| | | if ($tableExists->getCode() == MDB2_ERROR_NOSUCHTABLE) { |
| | | return false; |
| | |
| | | } else { |
| | | $query = "INSERT INTO $sequence_name ($seqcol_name) VALUES (0)"; |
| | | } |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | $this->popExpect(); |
| | | $this->popErrorHandling(); |
| | | if (PEAR::isError($result)) { |
| | |
| | | $value = $this->lastInsertID($sequence_name); |
| | | if (is_numeric($value)) { |
| | | $query = "DELETE FROM $sequence_name WHERE $seqcol_name < $value"; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | $this->warnings[] = 'nextID: could not delete previous sequence table values from '.$seq_name; |
| | | } |
| | |
| | | * @return int data array on success, a MDB2 error on failure |
| | | * @access public |
| | | */ |
| | | function &fetchRow($fetchmode = MDB2_FETCHMODE_DEFAULT, $rownum = null) |
| | | function fetchRow($fetchmode = MDB2_FETCHMODE_DEFAULT, $rownum = null) |
| | | { |
| | | if (!$this->_skipLimitOffset()) { |
| | | $null = null; |
| | | return $null; |
| | | return null; |
| | | } |
| | | if (null !== $rownum) { |
| | | $seek = $this->seek($rownum); |
| | |
| | | } |
| | | if (!$row) { |
| | | if (false === $this->result) { |
| | | $err =& $this->db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null, |
| | | $err = $this->db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null, |
| | | 'resultset has already been freed', __FUNCTION__); |
| | | return $err; |
| | | } |
| | | $null = null; |
| | | return $null; |
| | | return null; |
| | | } |
| | | $mode = $this->db->options['portability'] & MDB2_PORTABILITY_EMPTY_TO_NULL; |
| | | $rtrim = false; |
| | |
| | | // | Author: Lukas Smith <smith@pooteeweet.org> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: mysql.php 292659 2009-12-26 17:31:01Z quipo $ |
| | | // $Id: mysql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | /** |
| | |
| | | register_shutdown_function('MDB2_closeOpenTransactions'); |
| | | } |
| | | $query = $this->start_transaction ? 'START TRANSACTION' : 'SET AUTOCOMMIT = 0'; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | 'transactions are not supported', __FUNCTION__); |
| | | } |
| | | |
| | | $result =& $this->_doQuery('COMMIT', true); |
| | | $result = $this->_doQuery('COMMIT', true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | | if (!$this->start_transaction) { |
| | | $query = 'SET AUTOCOMMIT = 1'; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | } |
| | | |
| | | $query = 'ROLLBACK'; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | | if (!$this->start_transaction) { |
| | | $query = 'SET AUTOCOMMIT = 1'; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | * READ COMMITTED (prevents dirty reads) |
| | | * REPEATABLE READ (prevents nonrepeatable reads) |
| | | * SERIALIZABLE (prevents phantom reads) |
| | | * @param array some transaction options: |
| | | * 'wait' => 'WAIT' | 'NO WAIT' |
| | | * 'rw' => 'READ WRITE' | 'READ ONLY' |
| | | * |
| | | * @return mixed MDB2_OK on success, a MDB2 error on failure |
| | | * |
| | | * @access public |
| | | * @since 2.1.1 |
| | | */ |
| | | function setTransactionIsolation($isolation) |
| | | function setTransactionIsolation($isolation, $options = array()) |
| | | { |
| | | $this->debug('Setting transaction isolation level', __FUNCTION__, array('is_manip' => true)); |
| | | if (!$this->supports('transactions')) { |
| | |
| | | $client_info = mysql_get_client_info(); |
| | | if (function_exists('mysql_set_charset') && version_compare($client_info, '5.0.6')) { |
| | | if (!$result = mysql_set_charset($charset, $connection)) { |
| | | $err =& $this->raiseError(null, null, null, |
| | | $err = $this->raiseError(null, null, null, |
| | | 'Could not set client character set', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | // }}} |
| | | // {{{ standaloneQuery() |
| | | |
| | | /** |
| | | /** |
| | | * execute a query as DBA |
| | | * |
| | | * @param string $query the SQL query |
| | |
| | | * @return mixed MDB2_OK on success, a MDB2 error on failure |
| | | * @access public |
| | | */ |
| | | function &standaloneQuery($query, $types = null, $is_manip = false) |
| | | function standaloneQuery($query, $types = null, $is_manip = false) |
| | | { |
| | | $user = $this->options['DBA_username']? $this->options['DBA_username'] : $this->dsn['username']; |
| | | $pass = $this->options['DBA_password']? $this->options['DBA_password'] : $this->dsn['password']; |
| | |
| | | $this->offset = $this->limit = 0; |
| | | $query = $this->_modifyQuery($query, $is_manip, $limit, $offset); |
| | | |
| | | $result =& $this->_doQuery($query, $is_manip, $connection, $this->database_name); |
| | | $result = $this->_doQuery($query, $is_manip, $connection, $this->database_name); |
| | | if (!PEAR::isError($result)) { |
| | | $result = $this->_affectedRows($connection, $result); |
| | | } |
| | |
| | | * @return result or error object |
| | | * @access protected |
| | | */ |
| | | function &_doQuery($query, $is_manip = false, $connection = null, $database_name = null) |
| | | function _doQuery($query, $is_manip = false, $connection = null, $database_name = null) |
| | | { |
| | | $this->last_query = $query; |
| | | $result = $this->debug($query, 'query', array('is_manip' => $is_manip, 'when' => 'pre')); |
| | |
| | | ? 'mysql_query' : 'mysql_unbuffered_query'; |
| | | $result = @$function($query, $connection); |
| | | if (!$result && 0 !== mysql_errno($connection)) { |
| | | $err =& $this->raiseError(null, null, null, |
| | | $err = $this->raiseError(null, null, null, |
| | | 'Could not execute statement', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | * @access public |
| | | * @see bindParam, execute |
| | | */ |
| | | function &prepare($query, $types = null, $result_types = null, $lobs = array()) |
| | | function prepare($query, $types = null, $result_types = null, $lobs = array()) |
| | | { |
| | | // connect to get server capabilities (http://pear.php.net/bugs/16147) |
| | | $connection = $this->getConnection(); |
| | |
| | | if ($this->options['emulate_prepared'] |
| | | || $this->supported['prepared_statements'] !== true |
| | | ) { |
| | | $obj =& parent::prepare($query, $types, $result_types, $lobs); |
| | | return $obj; |
| | | return parent::prepare($query, $types, $result_types, $lobs); |
| | | } |
| | | $is_manip = ($result_types === MDB2_PREPARE_MANIP); |
| | | $offset = $this->offset; |
| | |
| | | $regexp = '/^.{'.($position+1).'}('.$this->options['bindname_format'].').*$/s'; |
| | | $parameter = preg_replace($regexp, '\\1', $query); |
| | | if ($parameter === '') { |
| | | $err =& $this->raiseError(MDB2_ERROR_SYNTAX, null, null, |
| | | $err = $this->raiseError(MDB2_ERROR_SYNTAX, null, null, |
| | | 'named parameter name must match "bindname_format" option', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | $statement_name = sprintf($this->options['statement_format'], $this->phptype, $prep_statement_counter++ . sha1(microtime() + mt_rand())); |
| | | $statement_name = substr(strtolower($statement_name), 0, $this->options['max_identifiers_length']); |
| | | $query = "PREPARE $statement_name FROM ".$this->quote($query, 'text'); |
| | | $statement =& $this->_doQuery($query, true, $connection); |
| | | $statement = $this->_doQuery($query, true, $connection); |
| | | if (PEAR::isError($statement)) { |
| | | return $statement; |
| | | } |
| | |
| | | |
| | | $table = $this->quoteIdentifier($table, true); |
| | | $query = "REPLACE INTO $table ($query) VALUES ($values)"; |
| | | $result =& $this->_doQuery($query, true, $connection); |
| | | $result = $this->_doQuery($query, true, $connection); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | $query = "INSERT INTO $sequence_name ($seqcol_name) VALUES (NULL)"; |
| | | $this->pushErrorHandling(PEAR_ERROR_RETURN); |
| | | $this->expectError(MDB2_ERROR_NOSUCHTABLE); |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | $this->popExpect(); |
| | | $this->popErrorHandling(); |
| | | if (PEAR::isError($result)) { |
| | |
| | | $value = $this->lastInsertID(); |
| | | if (is_numeric($value)) { |
| | | $query = "DELETE FROM $sequence_name WHERE $seqcol_name < $value"; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | $this->warnings[] = 'nextID: could not delete previous sequence table values from '.$seq_name; |
| | | } |
| | |
| | | * @return int data array on success, a MDB2 error on failure |
| | | * @access public |
| | | */ |
| | | function &fetchRow($fetchmode = MDB2_FETCHMODE_DEFAULT, $rownum = null) |
| | | function fetchRow($fetchmode = MDB2_FETCHMODE_DEFAULT, $rownum = null) |
| | | { |
| | | if (!is_null($rownum)) { |
| | | $seek = $this->seek($rownum); |
| | |
| | | |
| | | if (!$row) { |
| | | if ($this->result === false) { |
| | | $err =& $this->db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null, |
| | | $err = $this->db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null, |
| | | 'resultset has already been freed', __FUNCTION__); |
| | | return $err; |
| | | } |
| | | $null = null; |
| | | return $null; |
| | | return null; |
| | | } |
| | | $mode = $this->db->options['portability'] & MDB2_PORTABILITY_EMPTY_TO_NULL; |
| | | $rtrim = false; |
| | |
| | | * a MDB2 error on failure |
| | | * @access private |
| | | */ |
| | | function &_execute($result_class = true, $result_wrap_class = false) |
| | | function _execute($result_class = true, $result_wrap_class = false) |
| | | { |
| | | if (is_null($this->statement)) { |
| | | $result =& parent::_execute($result_class, $result_wrap_class); |
| | | $result = parent::_execute($result_class, $result_wrap_class); |
| | | return $result; |
| | | } |
| | | $this->db->last_query = $this->query; |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | $result =& $this->db->_wrapResult($result, $this->result_types, |
| | | $result = $this->db->_wrapResult($result, $this->result_types, |
| | | $result_class, $result_wrap_class, $this->limit, $this->offset); |
| | | $this->db->debug($this->query, 'execute', array('is_manip' => $this->is_manip, 'when' => 'post', 'result' => $result)); |
| | | return $result; |
| | |
| | | // | Author: Lukas Smith <smith@pooteeweet.org> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: mysqli.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: mysqli.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | /** |
| | |
| | | return MDB2_OK; //nothing to do |
| | | } |
| | | $query = $this->start_transaction ? 'START TRANSACTION' : 'SET AUTOCOMMIT = 0'; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | 'transactions are not supported', __FUNCTION__); |
| | | } |
| | | |
| | | $result =& $this->_doQuery('COMMIT', true); |
| | | $result = $this->_doQuery('COMMIT', true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | | if (!$this->start_transaction) { |
| | | $query = 'SET AUTOCOMMIT = 1'; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | } |
| | | |
| | | $query = 'ROLLBACK'; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | | if (!$this->start_transaction) { |
| | | $query = 'SET AUTOCOMMIT = 1'; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | * READ COMMITTED (prevents dirty reads) |
| | | * REPEATABLE READ (prevents nonrepeatable reads) |
| | | * SERIALIZABLE (prevents phantom reads) |
| | | * @param array some transaction options: |
| | | * 'wait' => 'WAIT' | 'NO WAIT' |
| | | * 'rw' => 'READ WRITE' | 'READ ONLY' |
| | | * |
| | | * @return mixed MDB2_OK on success, a MDB2 error on failure |
| | | * |
| | | * @access public |
| | | * @since 2.1.1 |
| | | */ |
| | | function setTransactionIsolation($isolation) |
| | | function setTransactionIsolation($isolation, $options = array()) |
| | | { |
| | | $this->debug('Setting transaction isolation level', __FUNCTION__, array('is_manip' => true)); |
| | | if (!$this->supports('transactions')) { |
| | |
| | | return $this->_doQuery($query, true, $connection); |
| | | } |
| | | if (!$result = mysqli_set_charset($connection, $charset)) { |
| | | $err =& $this->raiseError(null, null, null, |
| | | $err = $this->raiseError(null, null, null, |
| | | 'Could not set client character set', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | * @return mixed MDB2_OK on success, a MDB2 error on failure |
| | | * @access public |
| | | */ |
| | | function &standaloneQuery($query, $types = null, $is_manip = false) |
| | | function standaloneQuery($query, $types = null, $is_manip = false) |
| | | { |
| | | $user = $this->options['DBA_username']? $this->options['DBA_username'] : $this->dsn['username']; |
| | | $pass = $this->options['DBA_password']? $this->options['DBA_password'] : $this->dsn['password']; |
| | |
| | | $this->offset = $this->limit = 0; |
| | | $query = $this->_modifyQuery($query, $is_manip, $limit, $offset); |
| | | |
| | | $result =& $this->_doQuery($query, $is_manip, $connection, $this->database_name); |
| | | $result = $this->_doQuery($query, $is_manip, $connection, $this->database_name); |
| | | if (!PEAR::isError($result)) { |
| | | $result = $this->_affectedRows($connection, $result); |
| | | } |
| | |
| | | * @return result or error object |
| | | * @access protected |
| | | */ |
| | | function &_doQuery($query, $is_manip = false, $connection = null, $database_name = null) |
| | | function _doQuery($query, $is_manip = false, $connection = null, $database_name = null) |
| | | { |
| | | $this->last_query = $query; |
| | | $result = $this->debug($query, 'query', array('is_manip' => $is_manip, 'when' => 'pre')); |
| | |
| | | } |
| | | |
| | | if (!$result && 0 !== mysqli_errno($connection)) { |
| | | $err =& $this->raiseError(null, null, null, |
| | | $err = $this->raiseError(null, null, null, |
| | | 'Could not execute statement', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | if ($this->options['multi_query']) { |
| | | if ($this->options['result_buffering']) { |
| | | if (!($result = @mysqli_store_result($connection))) { |
| | | $err =& $this->raiseError(null, null, null, |
| | | $err = $this->raiseError(null, null, null, |
| | | 'Could not get the first result from a multi query', __FUNCTION__); |
| | | return $err; |
| | | } |
| | | } elseif (!($result = @mysqli_use_result($connection))) { |
| | | $err =& $this->raiseError(null, null, null, |
| | | $err = $this->raiseError(null, null, null, |
| | | 'Could not get the first result from a multi query', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | * @access public |
| | | * @see bindParam, execute |
| | | */ |
| | | function &prepare($query, $types = null, $result_types = null, $lobs = array()) |
| | | function prepare($query, $types = null, $result_types = null, $lobs = array()) |
| | | { |
| | | // connect to get server capabilities (http://pear.php.net/bugs/16147) |
| | | $connection = $this->getConnection(); |
| | |
| | | if ($this->options['emulate_prepared'] |
| | | || $this->supported['prepared_statements'] !== true |
| | | ) { |
| | | $obj =& parent::prepare($query, $types, $result_types, $lobs); |
| | | return $obj; |
| | | return parent::prepare($query, $types, $result_types, $lobs); |
| | | } |
| | | $is_manip = ($result_types === MDB2_PREPARE_MANIP); |
| | | $offset = $this->offset; |
| | |
| | | $regexp = '/^.{'.($position+1).'}('.$this->options['bindname_format'].').*$/s'; |
| | | $parameter = preg_replace($regexp, '\\1', $query); |
| | | if ($parameter === '') { |
| | | $err =& $this->raiseError(MDB2_ERROR_SYNTAX, null, null, |
| | | $err = $this->raiseError(MDB2_ERROR_SYNTAX, null, null, |
| | | 'named parameter name must match "bindname_format" option', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | $statement_name = substr(strtolower($statement_name), 0, $this->options['max_identifiers_length']); |
| | | $query = "PREPARE $statement_name FROM ".$this->quote($query, 'text'); |
| | | |
| | | $statement =& $this->_doQuery($query, true, $connection); |
| | | $statement = $this->_doQuery($query, true, $connection); |
| | | if (PEAR::isError($statement)) { |
| | | return $statement; |
| | | } |
| | |
| | | } else { |
| | | $statement = @mysqli_prepare($connection, $query); |
| | | if (!$statement) { |
| | | $err =& $this->raiseError(null, null, null, |
| | | $err = $this->raiseError(null, null, null, |
| | | 'Unable to create prepared statement handle', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | |
| | | $table = $this->quoteIdentifier($table, true); |
| | | $query = "REPLACE INTO $table ($query) VALUES ($values)"; |
| | | $result =& $this->_doQuery($query, true, $connection); |
| | | $result = $this->_doQuery($query, true, $connection); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | $query = "INSERT INTO $sequence_name ($seqcol_name) VALUES (NULL)"; |
| | | $this->pushErrorHandling(PEAR_ERROR_RETURN); |
| | | $this->expectError(MDB2_ERROR_NOSUCHTABLE); |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | $this->popExpect(); |
| | | $this->popErrorHandling(); |
| | | if (PEAR::isError($result)) { |
| | |
| | | $value = $this->lastInsertID(); |
| | | if (is_numeric($value)) { |
| | | $query = "DELETE FROM $sequence_name WHERE $seqcol_name < $value"; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | $this->warnings[] = 'nextID: could not delete previous sequence table values from '.$seq_name; |
| | | } |
| | |
| | | * @return int data array on success, a MDB2 error on failure |
| | | * @access public |
| | | */ |
| | | function &fetchRow($fetchmode = MDB2_FETCHMODE_DEFAULT, $rownum = null) |
| | | function fetchRow($fetchmode = MDB2_FETCHMODE_DEFAULT, $rownum = null) |
| | | { |
| | | if (null !== $rownum) { |
| | | $seek = $this->seek($rownum); |
| | |
| | | 'resultset has already been freed', __FUNCTION__); |
| | | return $err; |
| | | } |
| | | $null = null; |
| | | return $null; |
| | | return null; |
| | | } |
| | | $mode = $this->db->options['portability'] & MDB2_PORTABILITY_EMPTY_TO_NULL; |
| | | $rtrim = false; |
| | |
| | | * a MDB2 error on failure |
| | | * @access private |
| | | */ |
| | | function &_execute($result_class = true, $result_wrap_class = false) |
| | | function _execute($result_class = true, $result_wrap_class = false) |
| | | { |
| | | if (null === $this->statement) { |
| | | $result =& parent::_execute($result_class, $result_wrap_class); |
| | | $result = parent::_execute($result_class, $result_wrap_class); |
| | | return $result; |
| | | } |
| | | $this->db->last_query = $this->query; |
| | |
| | | $query = 'EXECUTE '.$this->statement; |
| | | } |
| | | if (!empty($this->positions)) { |
| | | $paramReferences = array(); |
| | | $parameters = array(0 => $this->statement, 1 => ''); |
| | | $lobs = array(); |
| | | $i = 0; |
| | |
| | | } |
| | | } else { |
| | | if (is_resource($value) || $type == 'clob' || $type == 'blob') { |
| | | $parameters[] = null; |
| | | $paramReferences[$i] = null; |
| | | // mysqli_stmt_bind_param() requires parameters to be passed by reference |
| | | $parameters[] =& $paramReferences[$i]; |
| | | $parameters[1].= 'b'; |
| | | $lobs[$i] = $parameter; |
| | | } else { |
| | | $quoted = $this->db->quote($value, $type, false); |
| | | if (PEAR::isError($quoted)) { |
| | | return $quoted; |
| | | $paramReferences[$i] = $this->db->quote($value, $type, false); |
| | | if (PEAR::isError($paramReferences[$i])) { |
| | | return $paramReferences[$i]; |
| | | } |
| | | $parameters[] = $quoted; |
| | | // mysqli_stmt_bind_param() requires parameters to be passed by reference |
| | | $parameters[] =& $paramReferences[$i]; |
| | | $parameters[1].= $this->db->datatype->mapPrepareDatatype($type); |
| | | } |
| | | ++$i; |
| | |
| | | if (!is_object($this->statement)) { |
| | | $query.= ' USING @'.implode(', @', array_values($this->positions)); |
| | | } else { |
| | | $result = @call_user_func_array('mysqli_stmt_bind_param', $parameters); |
| | | $result = call_user_func_array('mysqli_stmt_bind_param', $parameters); |
| | | if (false === $result) { |
| | | $err =& $this->db->raiseError(null, null, null, |
| | | $err = $this->db->raiseError(null, null, null, |
| | | 'Unable to bind parameters', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | $result =& $this->db->_wrapResult($result, $this->result_types, |
| | | $result = $this->db->_wrapResult($result, $this->result_types, |
| | | $result_class, $result_wrap_class, $this->limit, $this->offset); |
| | | } else { |
| | | if (!@mysqli_stmt_execute($this->statement)) { |
| | | $err =& $this->db->raiseError(null, null, null, |
| | | //echo '<pre>'; var_dump($this->statement, mysqli_stmt_error($this->statement));exit; |
| | | |
| | | if (!mysqli_stmt_execute($this->statement)) { |
| | | echo '<pre>'; var_dump($this->statement, mysqli_stmt_error($this->statement));exit; |
| | | $err = $this->db->raiseError(null, null, null, |
| | | 'Unable to execute statement', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | @mysqli_stmt_store_result($this->statement); |
| | | } |
| | | |
| | | $result =& $this->db->_wrapResult($this->statement, $this->result_types, |
| | | $result = $this->db->_wrapResult($this->statement, $this->result_types, |
| | | $result_class, $result_wrap_class, $this->limit, $this->offset); |
| | | } |
| | | |
| | |
| | | // | Author: Paul Cooper <pgc@ucecom.com> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: pgsql.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: pgsql.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | |
| | | /** |
| | | * MDB2 PostGreSQL driver |
| | |
| | | $this->destructor_registered = true; |
| | | register_shutdown_function('MDB2_closeOpenTransactions'); |
| | | } |
| | | $result =& $this->_doQuery('BEGIN', true); |
| | | $result = $this->_doQuery('BEGIN', true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | return $this->_doQuery($query, true); |
| | | } |
| | | |
| | | $result =& $this->_doQuery('COMMIT', true); |
| | | $result = $this->_doQuery('COMMIT', true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | } |
| | | |
| | | $query = 'ROLLBACK'; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | * READ COMMITTED (prevents dirty reads) |
| | | * REPEATABLE READ (prevents nonrepeatable reads) |
| | | * SERIALIZABLE (prevents phantom reads) |
| | | * @param array some transaction options: |
| | | * 'wait' => 'WAIT' | 'NO WAIT' |
| | | * 'rw' => 'READ WRITE' | 'READ ONLY' |
| | | * |
| | | * @return mixed MDB2_OK on success, a MDB2 error on failure |
| | | * |
| | | * @access public |
| | | * @since 2.1.1 |
| | | */ |
| | | function setTransactionIsolation($isolation) |
| | | function setTransactionIsolation($isolation, $options = array()) |
| | | { |
| | | $this->debug('Setting transaction isolation level', __FUNCTION__, array('is_manip' => true)); |
| | | switch ($isolation) { |
| | |
| | | // }}} |
| | | // {{{ standaloneQuery() |
| | | |
| | | /** |
| | | /** |
| | | * execute a query as DBA |
| | | * |
| | | * @param string $query the SQL query |
| | |
| | | * @return mixed MDB2_OK on success, a MDB2 error on failure |
| | | * @access public |
| | | */ |
| | | function &standaloneQuery($query, $types = null, $is_manip = false) |
| | | function standaloneQuery($query, $types = null, $is_manip = false) |
| | | { |
| | | $user = $this->options['DBA_username']? $this->options['DBA_username'] : $this->dsn['username']; |
| | | $pass = $this->options['DBA_password']? $this->options['DBA_password'] : $this->dsn['password']; |
| | |
| | | $this->offset = $this->limit = 0; |
| | | $query = $this->_modifyQuery($query, $is_manip, $limit, $offset); |
| | | |
| | | $result =& $this->_doQuery($query, $is_manip, $connection, $this->database_name); |
| | | $result = $this->_doQuery($query, $is_manip, $connection, $this->database_name); |
| | | if (!PEAR::isError($result)) { |
| | | if ($is_manip) { |
| | | $result = $this->_affectedRows($connection, $result); |
| | |
| | | * @return result or error object |
| | | * @access protected |
| | | */ |
| | | function &_doQuery($query, $is_manip = false, $connection = null, $database_name = null) |
| | | function _doQuery($query, $is_manip = false, $connection = null, $database_name = null) |
| | | { |
| | | $this->last_query = $query; |
| | | $result = $this->debug($query, 'query', array('is_manip' => $is_manip, 'when' => 'pre')); |
| | |
| | | $function = $this->options['multi_query'] ? 'pg_send_query' : 'pg_query'; |
| | | $result = @$function($connection, $query); |
| | | if (!$result) { |
| | | $err =& $this->raiseError(null, null, null, |
| | | $err = $this->raiseError(null, null, null, |
| | | 'Could not execute statement', __FUNCTION__); |
| | | return $err; |
| | | } elseif ($this->options['multi_query']) { |
| | | if (!($result = @pg_get_result($connection))) { |
| | | $err =& $this->raiseError(null, null, null, |
| | | $err = $this->raiseError(null, null, null, |
| | | 'Could not get the first result from a multi query', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | * @access public |
| | | * @see bindParam, execute |
| | | */ |
| | | function &prepare($query, $types = null, $result_types = null, $lobs = array()) |
| | | function prepare($query, $types = null, $result_types = null, $lobs = array()) |
| | | { |
| | | if ($this->options['emulate_prepared']) { |
| | | $obj =& parent::prepare($query, $types, $result_types, $lobs); |
| | | return $obj; |
| | | return parent::prepare($query, $types, $result_types, $lobs); |
| | | } |
| | | $is_manip = ($result_types === MDB2_PREPARE_MANIP); |
| | | $offset = $this->offset; |
| | |
| | | $regexp = '/^.{'.($position+1).'}('.$this->options['bindname_format'].').*$/s'; |
| | | $param = preg_replace($regexp, '\\1', $query); |
| | | if ($param === '') { |
| | | $err =& $this->raiseError(MDB2_ERROR_SYNTAX, null, null, |
| | | $err = $this->raiseError(MDB2_ERROR_SYNTAX, null, null, |
| | | 'named parameter name must match "bindname_format" option', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | if (false === $pgtypes) { |
| | | $result = @pg_prepare($connection, $statement_name, $query); |
| | | if (!$result) { |
| | | $err =& $this->raiseError(null, null, null, |
| | | $err = $this->raiseError(null, null, null, |
| | | 'Unable to create prepared statement handle', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | $types_string = ' ('.implode(', ', $pgtypes).') '; |
| | | } |
| | | $query = 'PREPARE '.$statement_name.$types_string.' AS '.$query; |
| | | $statement =& $this->_doQuery($query, true, $connection); |
| | | $statement = $this->_doQuery($query, true, $connection); |
| | | if (PEAR::isError($statement)) { |
| | | return $statement; |
| | | } |
| | |
| | | * @return int data array on success, a MDB2 error on failure |
| | | * @access public |
| | | */ |
| | | function &fetchRow($fetchmode = MDB2_FETCHMODE_DEFAULT, $rownum = null) |
| | | function fetchRow($fetchmode = MDB2_FETCHMODE_DEFAULT, $rownum = null) |
| | | { |
| | | if (null !== $rownum) { |
| | | $seek = $this->seek($rownum); |
| | |
| | | } |
| | | if (!$row) { |
| | | if (false === $this->result) { |
| | | $err =& $this->db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null, |
| | | $err = $this->db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null, |
| | | 'resultset has already been freed', __FUNCTION__); |
| | | return $err; |
| | | } |
| | | $null = null; |
| | | return $null; |
| | | return null; |
| | | } |
| | | $mode = $this->db->options['portability'] & MDB2_PORTABILITY_EMPTY_TO_NULL; |
| | | $rtrim = false; |
| | |
| | | * a MDB2 error on failure |
| | | * @access private |
| | | */ |
| | | function &_execute($result_class = true, $result_wrap_class = false) |
| | | function _execute($result_class = true, $result_wrap_class = false) |
| | | { |
| | | if (null === $this->statement) { |
| | | $result =& parent::_execute($result_class, $result_wrap_class); |
| | | return $result; |
| | | return parent::_execute($result_class, $result_wrap_class); |
| | | } |
| | | $this->db->last_query = $this->query; |
| | | $this->db->debug($this->query, 'execute', array('is_manip' => $this->is_manip, 'when' => 'pre', 'parameters' => $this->values)); |
| | |
| | | if (!$query) { |
| | | $result = @pg_execute($connection, $this->statement, $parameters); |
| | | if (!$result) { |
| | | $err =& $this->db->raiseError(null, null, null, |
| | | $err = $this->db->raiseError(null, null, null, |
| | | 'Unable to execute statement', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | return $affected_rows; |
| | | } |
| | | |
| | | $result =& $this->db->_wrapResult($result, $this->result_types, |
| | | $result = $this->db->_wrapResult($result, $this->result_types, |
| | | $result_class, $result_wrap_class, $this->limit, $this->offset); |
| | | $this->db->debug($this->query, 'execute', array('is_manip' => $this->is_manip, 'when' => 'post', 'result' => $result)); |
| | | return $result; |
| | |
| | | // | Author: Lukas Smith <smith@pooteeweet.org> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: sqlite.php 292715 2009-12-28 14:06:34Z quipo $ |
| | | // $Id: sqlite.php 295587 2010-02-28 17:16:38Z quipo $ |
| | | // |
| | | |
| | | /** |
| | |
| | | register_shutdown_function('MDB2_closeOpenTransactions'); |
| | | } |
| | | $query = 'BEGIN TRANSACTION '.$this->options['base_transaction_name']; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | } |
| | | |
| | | $query = 'COMMIT TRANSACTION '.$this->options['base_transaction_name']; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | } |
| | | |
| | | $query = 'ROLLBACK TRANSACTION '.$this->options['base_transaction_name']; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | * READ COMMITTED (prevents dirty reads) |
| | | * REPEATABLE READ (prevents nonrepeatable reads) |
| | | * SERIALIZABLE (prevents phantom reads) |
| | | * @param array some transaction options: |
| | | * 'wait' => 'WAIT' | 'NO WAIT' |
| | | * 'rw' => 'READ WRITE' | 'READ ONLY' |
| | | * |
| | | * @return mixed MDB2_OK on success, a MDB2 error on failure |
| | | * |
| | | * @access public |
| | | * @since 2.1.1 |
| | | */ |
| | | function setTransactionIsolation($isolation) |
| | | function setTransactionIsolation($isolation, $options = array()) |
| | | { |
| | | $this->debug('Setting transaction isolation level', __FUNCTION__, array('is_manip' => true)); |
| | | switch ($isolation) { |
| | |
| | | * @return result or error object |
| | | * @access protected |
| | | */ |
| | | function &_doQuery($query, $is_manip = false, $connection = null, $database_name = null) |
| | | function _doQuery($query, $is_manip = false, $connection = null, $database_name = null) |
| | | { |
| | | $this->last_query = $query; |
| | | $result = $this->debug($query, 'query', array('is_manip' => $is_manip, 'when' => 'pre')); |
| | |
| | | $this->_lasterror = $php_errormsg; |
| | | |
| | | if (!$result) { |
| | | $err =& $this->raiseError(null, null, null, |
| | | $code = null; |
| | | if (0 === strpos($this->_lasterror, 'no such table')) { |
| | | $code = MDB2_ERROR_NOSUCHTABLE; |
| | | } |
| | | $err = $this->raiseError($code, null, null, |
| | | 'Could not execute statement', __FUNCTION__); |
| | | return $err; |
| | | } |
| | |
| | | |
| | | $table = $this->quoteIdentifier($table, true); |
| | | $query = "REPLACE INTO $table ($query) VALUES ($values)"; |
| | | $result =& $this->_doQuery($query, true, $connection); |
| | | $result = $this->_doQuery($query, true, $connection); |
| | | if (PEAR::isError($result)) { |
| | | return $result; |
| | | } |
| | |
| | | $query = "INSERT INTO $sequence_name ($seqcol_name) VALUES (NULL)"; |
| | | $this->pushErrorHandling(PEAR_ERROR_RETURN); |
| | | $this->expectError(MDB2_ERROR_NOSUCHTABLE); |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | $this->popExpect(); |
| | | $this->popErrorHandling(); |
| | | if (PEAR::isError($result)) { |
| | |
| | | $value = $this->lastInsertID(); |
| | | if (is_numeric($value)) { |
| | | $query = "DELETE FROM $sequence_name WHERE $seqcol_name < $value"; |
| | | $result =& $this->_doQuery($query, true); |
| | | $result = $this->_doQuery($query, true); |
| | | if (PEAR::isError($result)) { |
| | | $this->warnings[] = 'nextID: could not delete previous sequence table values from '.$seq_name; |
| | | } |
| | |
| | | * @return int data array on success, a MDB2 error on failure |
| | | * @access public |
| | | */ |
| | | function &fetchRow($fetchmode = MDB2_FETCHMODE_DEFAULT, $rownum = null) |
| | | function fetchRow($fetchmode = MDB2_FETCHMODE_DEFAULT, $rownum = null) |
| | | { |
| | | if (null !== $rownum) { |
| | | $seek = $this->seek($rownum); |
| | |
| | | } |
| | | if (!$row) { |
| | | if (false === $this->result) { |
| | | $err =& $this->db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null, |
| | | $err = $this->db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null, |
| | | 'resultset has already been freed', __FUNCTION__); |
| | | return $err; |
| | | } |
| | | $null = null; |
| | | return $null; |
| | | return null; |
| | | } |
| | | $mode = $this->db->options['portability'] & MDB2_PORTABILITY_EMPTY_TO_NULL; |
| | | $rtrim = false; |
| | |
| | | $query = $this->_modifyQuery($query, $is_manip, $this->limit, $this->offset);
|
| | | $this->offset = $this->limit = 0;
|
| | |
|
| | | $result =& $this->_doQuery($query, $is_manip, $connection);
|
| | | $result = $this->_doQuery($query, $is_manip, $connection);
|
| | | if (!PEAR::isError($result)) {
|
| | | $result = $this->_affectedRows($connection, $result);
|
| | | }
|
| | |
| | | * @return result or error object
|
| | | * @access protected
|
| | | */
|
| | | function &_doQuery($query, $is_manip = false, $connection = null, $database_name = null)
|
| | | function _doQuery($query, $is_manip = false, $connection = null, $database_name = null)
|
| | | {
|
| | | $this->last_query = $query;
|
| | | $result = $this->debug($query, 'query', array('is_manip' => $is_manip, 'when' => 'pre'));
|
| | |
| | | $query = preg_replace('/DATE_FORMAT\(([\w|.]*)\, \'\%Y\-\%m\-\%d %H\:00\:00\'\)/i','CONVERT(varchar(13),$1,120)+\':00:00\'',$query);
|
| | | $result = @sqlsrv_query($connection,$query);
|
| | | if (!$result) {
|
| | | $err =& $this->raiseError(null, null, null,
|
| | | $err = $this->raiseError(null, null, null,
|
| | | 'Could not execute statement', __FUNCTION__);
|
| | | return $err;
|
| | | }
|
| | |
| | | } else {
|
| | | $query = "INSERT INTO $sequence_name ($seqcol_name) VALUES (0)";
|
| | | }
|
| | | $result =& $this->_doQuery($query, true);
|
| | | $result = $this->_doQuery($query, true);
|
| | | $this->popExpect();
|
| | | $this->popErrorHandling();
|
| | | if (PEAR::isError($result)) {
|
| | |
| | | $value = $this->lastInsertID($sequence_name);
|
| | | if (is_numeric($value)) {
|
| | | $query = "DELETE FROM $sequence_name WHERE $seqcol_name < $value";
|
| | | $result =& $this->_doQuery($query, true);
|
| | | $result = $this->_doQuery($query, true);
|
| | | if (PEAR::isError($result)) {
|
| | | $this->warnings[] = 'nextID: could not delete previous sequence table values from '.$seq_name;
|
| | | }
|
| | |
| | | */
|
| | | class MDB2_Result_sqlsrv extends MDB2_Result_Common
|
| | | {
|
| | | // {{{ constructor: function __construct(&$db, &$result, $limit = 0, $offset = 0)
|
| | | // {{{ constructor: function __construct($db, $result, $limit = 0, $offset = 0)
|
| | |
|
| | | /**
|
| | | * Constructor
|
| | | */
|
| | | function __construct(&$db, &$result, $limit = 0, $offset = 0)
|
| | | function __construct($db, $result, $limit = 0, $offset = 0)
|
| | | {
|
| | | $this->db =& $db;
|
| | | $this->result =& $result;
|
| | | $this->db = $db;
|
| | | $this->result = $result;
|
| | | $this->offset = $offset;
|
| | | $this->limit = max(0, $limit - 1);
|
| | | $this->cursor = 0;
|
| | |
| | | continue;
|
| | | }
|
| | | foreach ($row as $k => $v) {
|
| | | if (is_object($v) && method_exists($v, 'format')) {//DateTime Object
|
| | | $row[$k] = $v->format("Y-m-d H:i:s");
|
| | | if (is_object($v) && method_exists($v, 'format')) {
|
| | | //DateTime Object
|
| | | $row[$k] = $v->format('Y-m-d H:i:s');
|
| | | }
|
| | | }
|
| | | $this->rows[] = $row;//read results into memory, cursors are not supported
|
| | | $this->rows[] = $row; //read results into memory, cursors are not supported
|
| | | }
|
| | | }
|
| | | $this->rowcnt = count($this->rows);
|
| | |
| | | * @return int data array on success, a MDB2 error on failure
|
| | | * @access public
|
| | | */
|
| | | function &fetchRow($fetchmode = MDB2_FETCHMODE_DEFAULT, $rownum = null)
|
| | | function fetchRow($fetchmode = MDB2_FETCHMODE_DEFAULT, $rownum = null)
|
| | | {
|
| | | if (!$this->result) {
|
| | | return $this->db->raiseError(MDB2_ERROR_INVALID, null, null, 'no valid statement given', __FUNCTION__);
|
| | | }
|
| | | if (($this->limit && $this->rownum >= $this->limit) || ($this->cursor >= $this->rowcnt || $this->rowcnt == 0)) {
|
| | | $null = null;
|
| | | return $null;
|
| | | return null;
|
| | | }
|
| | | if (null !== $rownum) {
|
| | | $seek = $this->seek($rownum);
|
| | |
| | | }
|
| | | if (!$row) {
|
| | | if (false === $this->result) {
|
| | | $err =& $this->db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null,
|
| | | $err = $this->db->raiseError(MDB2_ERROR_NEED_MORE_DATA, null, null,
|
| | | 'resultset has already been freed', __FUNCTION__);
|
| | | return $err;
|
| | | }
|
| | | $null = null;
|
| | | return $null;
|
| | | return null;
|
| | | }
|
| | | $mode = $this->db->options['portability'] & MDB2_PORTABILITY_EMPTY_TO_NULL;
|
| | | $rtrim = false;
|
| | |
| | |
|
| | | // }}}
|
| | |
|
| | | ?> |
| | | ?>
|
| | |
| | | // | Author: Lukas Smith <smith@pooteeweet.org> | |
| | | // +----------------------------------------------------------------------+ |
| | | // |
| | | // $Id: Iterator.php 212543 2006-05-06 14:03:41Z lsmith $ |
| | | // $Id: Iterator.php 295586 2010-02-28 17:04:17Z quipo $ |
| | | |
| | | /** |
| | | * PHP5 Iterator |
| | |
| | | */ |
| | | public function current() |
| | | { |
| | | if (is_null($this->row)) { |
| | | if (null === $this->row) { |
| | | $row = $this->result->fetchRow($this->fetchmode); |
| | | if (PEAR::isError($row)) { |
| | | $row = false; |