⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mysqli.php

📁 FP2 CRM code+Mysql DB
💻 PHP
📖 第 1 页 / 共 3 页
字号:
                    return $this->raiseError($result);                }                $repeat = 1;            }        } while ($repeat);        return $this->raiseError($result);    }    /**     * Creates a new sequence     *     * @param string $seq_name  name of the new sequence     *     * @return int  DB_OK on success.  A DB_Error object on failure.     *     * @see DB_common::createSequence(), DB_common::getSequenceName(),     *      DB_mysqli::nextID(), DB_mysqli::dropSequence()     */    function createSequence($seq_name)    {        $seqname = $this->getSequenceName($seq_name);        $res = $this->query('CREATE TABLE ' . $seqname                            . ' (id INTEGER UNSIGNED AUTO_INCREMENT NOT NULL,'                            . ' PRIMARY KEY(id))');        if (DB::isError($res)) {            return $res;        }        // insert yields value 1, nextId call will generate ID 2        return $this->query("INSERT INTO ${seqname} (id) VALUES (0)");    }    // }}}    // {{{ dropSequence()    /**     * Deletes a sequence     *     * @param string $seq_name  name of the sequence to be deleted     *     * @return int  DB_OK on success.  A DB_Error object on failure.     *     * @see DB_common::dropSequence(), DB_common::getSequenceName(),     *      DB_mysql::nextID(), DB_mysql::createSequence()     */    function dropSequence($seq_name)    {        return $this->query('DROP TABLE ' . $this->getSequenceName($seq_name));    }    // }}}    // {{{ _BCsequence()    /**     * Backwards compatibility with old sequence emulation implementation     * (clean up the dupes)     *     * @param string $seqname  the sequence name to clean up     *     * @return bool  true on success.  A DB_Error object on failure.     *     * @access private     */    function _BCsequence($seqname)    {        // Obtain a user-level lock... this will release any previous        // application locks, but unlike LOCK TABLES, it does not abort        // the current transaction and is much less frequently used.        $result = $this->getOne("SELECT GET_LOCK('${seqname}_lock',10)");        if (DB::isError($result)) {            return $result;        }        if ($result == 0) {            // Failed to get the lock, can't do the conversion, bail            // with a DB_ERROR_NOT_LOCKED error            return $this->mysqliRaiseError(DB_ERROR_NOT_LOCKED);        }        $highest_id = $this->getOne("SELECT MAX(id) FROM ${seqname}");        if (DB::isError($highest_id)) {            return $highest_id;        }        // This should kill all rows except the highest        // We should probably do something if $highest_id isn't        // numeric, but I'm at a loss as how to handle that...        $result = $this->query('DELETE FROM ' . $seqname                               . " WHERE id <> $highest_id");        if (DB::isError($result)) {            return $result;        }        // If another thread has been waiting for this lock,        // it will go thru the above procedure, but will have no        // real effect        $result = $this->getOne("SELECT RELEASE_LOCK('${seqname}_lock')");        if (DB::isError($result)) {            return $result;        }        return true;    }    // }}}    // {{{ quoteIdentifier()    /**     * Quotes a string so it can be safely used as a table or column name     *     * MySQL can't handle the backtick character (<kbd>`</kbd>) in     * table or column names.     *     * @param string $str  identifier name to be quoted     *     * @return string  quoted identifier string     *     * @see DB_common::quoteIdentifier()     * @since Method available since Release 1.6.0     */    function quoteIdentifier($str)    {        return '`' . $str . '`';    }    // }}}    // {{{ escapeSimple()    /**     * Escapes a string according to the current DBMS's standards     *     * @param string $str  the string to be escaped     *     * @return string  the escaped string     *     * @see DB_common::quoteSmart()     * @since Method available since Release 1.6.0     */    function escapeSimple($str)    {        return @mysqli_real_escape_string($this->connection, $str);    }    // }}}    // {{{ modifyLimitQuery()    /**     * Adds LIMIT clauses to a query string according to current DBMS standards     *     * @param string $query   the query to modify     * @param int    $from    the row to start to fetching (0 = the first row)     * @param int    $count   the numbers of rows to fetch     * @param mixed  $params  array, string or numeric data to be used in     *                         execution of the statement.  Quantity of items     *                         passed must match quantity of placeholders in     *                         query:  meaning 1 placeholder for non-array     *                         parameters or 1 placeholder per array element.     *     * @return string  the query string with LIMIT clauses added     *     * @access protected     */    function modifyLimitQuery($query, $from, $count, $params = array())    {        if (DB::isManip($query)) {            return $query . " LIMIT $count";        } else {            return $query . " LIMIT $from, $count";        }    }    // }}}    // {{{ mysqliRaiseError()    /**     * Produces a DB_Error object regarding the current problem     *     * @param int $errno  if the error is being manually raised pass a     *                     DB_ERROR* constant here.  If this isn't passed     *                     the error information gathered from the DBMS.     *     * @return object  the DB_Error object     *     * @see DB_common::raiseError(),     *      DB_mysqli::errorNative(), DB_common::errorCode()     */    function mysqliRaiseError($errno = null)    {        if ($errno === null) {            if ($this->options['portability'] & DB_PORTABILITY_ERRORS) {                $this->errorcode_map[1022] = DB_ERROR_CONSTRAINT;                $this->errorcode_map[1048] = DB_ERROR_CONSTRAINT_NOT_NULL;                $this->errorcode_map[1062] = DB_ERROR_CONSTRAINT;            } else {                // Doing this in case mode changes during runtime.                $this->errorcode_map[1022] = DB_ERROR_ALREADY_EXISTS;                $this->errorcode_map[1048] = DB_ERROR_CONSTRAINT;                $this->errorcode_map[1062] = DB_ERROR_ALREADY_EXISTS;            }            $errno = $this->errorCode(mysqli_errno($this->connection));        }        return $this->raiseError($errno, null, null, null,                                 @mysqli_errno($this->connection) . ' ** ' .                                 @mysqli_error($this->connection));    }    // }}}    // {{{ errorNative()    /**     * Gets the DBMS' native error code produced by the last query     *     * @return int  the DBMS' error code     */    function errorNative()    {        return @mysqli_errno($this->connection);    }    // }}}    // {{{ tableInfo()    /**     * Returns information about a table or a result set     *     * @param object|string  $result  DB_result object from a query or a     *                                 string containing the name of a table.     *                                 While this also accepts a query result     *                                 resource identifier, this behavior is     *                                 deprecated.     * @param int            $mode    a valid tableInfo mode     *     * @return array  an associative array with the information requested.     *                 A DB_Error object on failure.     *     * @see DB_common::setOption()     */    function tableInfo($result, $mode = null)    {        if (is_string($result)) {            /*             * Probably received a table name.             * Create a result resource identifier.             */            $id = @mysqli_query($this->connection,                                "SELECT * FROM $result LIMIT 0");            $got_string = true;        } elseif (isset($result->result)) {            /*             * Probably received a result object.             * Extract the result resource identifier.             */            $id = $result->result;            $got_string = false;        } else {            /*             * Probably received a result resource identifier.             * Copy it.             * Deprecated.  Here for compatibility only.             */            $id = $result;            $got_string = false;        }        if (!is_a($id, 'mysqli_result')) {            return $this->mysqliRaiseError(DB_ERROR_NEED_MORE_DATA);        }        if ($this->options['portability'] & DB_PORTABILITY_LOWERCASE) {            $case_func = 'strtolower';        } else {            $case_func = 'strval';        }        $count = @mysqli_num_fields($id);        $res   = array();        if ($mode) {            $res['num_fields'] = $count;        }        for ($i = 0; $i < $count; $i++) {            $tmp = @mysqli_fetch_field($id);            $flags = '';            foreach ($this->mysqli_flags as $const => $means) {                if ($tmp->flags & $const) {                    $flags .= $means . ' ';                }            }            if ($tmp->def) {                $flags .= 'default_' . rawurlencode($tmp->def);            }            $flags = trim($flags);            $res[$i] = array(                'table' => $case_func($tmp->table),                'name'  => $case_func($tmp->name),                'type'  => isset($this->mysqli_types[$tmp->type])                                    ? $this->mysqli_types[$tmp->type]                                    : 'unknown',                'len'   => $tmp->max_length,                'flags' => $flags,            );            if ($mode & DB_TABLEINFO_ORDER) {                $res['order'][$res[$i]['name']] = $i;            }            if ($mode & DB_TABLEINFO_ORDERTABLE) {                $res['ordertable'][$res[$i]['table']][$res[$i]['name']] = $i;            }        }        // free the result only if we were called on a table        if ($got_string) {            @mysqli_free_result($id);        }        return $res;    }    // }}}    // {{{ getSpecialQuery()    /**     * Obtains the query string needed for listing a given type of objects     *     * @param string $type  the kind of objects you want to retrieve     *     * @return string  the SQL query string or null if the driver doesn't     *                  support the object type requested     *     * @access protected     * @see DB_common::getListOf()     */    function getSpecialQuery($type)    {        switch ($type) {            case 'tables':                return 'SHOW TABLES';            case 'users':                return 'SELECT DISTINCT User FROM mysql.user';            case 'databases':                return 'SHOW DATABASES';            default:                return null;        }    }    // }}}}/* * Local variables: * tab-width: 4 * c-basic-offset: 4 * End: */?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -