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

📄 sqlite.php

📁 太烦了
💻 PHP
📖 第 1 页 / 共 2 页
字号:
    /**     * Get the native error string of the last error (if any) that     * occured on the current connection.     *     * This is used to retrieve more meaningfull error messages DB_pgsql     * way since sqlite_last_error() does not provide adequate info.     *     * @return string native SQLite error message     */    function errorNative()    {        return($this->_lasterror);    }    // }}}    // {{{ errorCode()    /**     * Determine PEAR::DB error code from the database's text error message.     *     * @param  string  $errormsg  error message returned from the database     * @return integer  an error number from a DB error constant     */    function errorCode($errormsg)    {        static $error_regexps;        if (!isset($error_regexps)) {            $error_regexps = array(                '/^no such table:/' => DB_ERROR_NOSUCHTABLE,                '/^table .* already exists$/' => DB_ERROR_ALREADY_EXISTS,                '/PRIMARY KEY must be unique/i' => DB_ERROR_CONSTRAINT,                '/is not unique/' => DB_ERROR_CONSTRAINT,                '/uniqueness constraint failed/' => DB_ERROR_CONSTRAINT,                '/may not be NULL/' => DB_ERROR_CONSTRAINT_NOT_NULL,                '/^no such column:/' => DB_ERROR_NOSUCHFIELD,                '/^near ".*": syntax error$/' => DB_ERROR_SYNTAX            );        }        foreach ($error_regexps as $regexp => $code) {            if (preg_match($regexp, $errormsg)) {                return $code;            }        }        // Fall back to DB_ERROR if there was no mapping.        return DB_ERROR;    }    // }}}    // {{{ dropSequence()    /**     * Deletes a sequence     *     * @param string $seq_name  name of the sequence to be deleted     *     * @return int  DB_OK on success.  DB_Error if problems.     *     * @internal     * @see DB_common::dropSequence()     * @access public     */    function dropSequence($seq_name)    {        $seqname = $this->getSequenceName($seq_name);        return $this->query("DROP TABLE $seqname");    }    /**     * Creates a new sequence     *     * @param string $seq_name  name of the new sequence     *     * @return int  DB_OK on success.  A DB_Error object is returned if     *              problems arise.     *     * @internal     * @see DB_common::createSequence()     * @access public     */    function createSequence($seq_name)    {        $seqname = $this->getSequenceName($seq_name);        $query   = 'CREATE TABLE ' . $seqname .                   ' (id INTEGER UNSIGNED PRIMARY KEY) ';        $result  = $this->query($query);        if (DB::isError($result)) {            return($result);        }        $query   = "CREATE TRIGGER ${seqname}_cleanup AFTER INSERT ON $seqname                    BEGIN                        DELETE FROM $seqname WHERE id<LAST_INSERT_ROWID();                    END ";        $result  = $this->query($query);        if (DB::isError($result)) {            return($result);        }    }    // }}}    // {{{ nextId()    /**     * Returns the next free id in a sequence     *     * @param string  $seq_name  name of the sequence     * @param boolean $ondemand  when true, the seqence is automatically     *                           created if it does not exist     *     * @return int  the next id number in the sequence.  DB_Error if problem.     *     * @internal     * @see DB_common::nextID()     * @access public     */    function nextId($seq_name, $ondemand = true)    {        $seqname = $this->getSequenceName($seq_name);        do {            $repeat = 0;            $this->pushErrorHandling(PEAR_ERROR_RETURN);            $result = $this->query("INSERT INTO $seqname VALUES (NULL)");            $this->popErrorHandling();            if ($result === DB_OK) {                $id = @sqlite_last_insert_rowid($this->connection);                if ($id != 0) {                    return $id;                }            } elseif ($ondemand && DB::isError($result) &&                      $result->getCode() == DB_ERROR_NOSUCHTABLE)            {                $result = $this->createSequence($seq_name);                if (DB::isError($result)) {                    return $this->raiseError($result);                } else {                    $repeat = 1;                }            }        } while ($repeat);        return $this->raiseError($result);    }    // }}}    // {{{ getSpecialQuery()    /**     * Returns the query needed to get some backend info.     *     * Refer to the online manual at http://sqlite.org/sqlite.html.     *     * @param string $type What kind of info you want to retrieve     * @return string The SQL query string     */    function getSpecialQuery($type, $args=array())    {        if (!is_array($args))            return $this->raiseError('no key specified', null, null, null,                                     'Argument has to be an array.');        switch (strtolower($type)) {            case 'master':                return 'SELECT * FROM sqlite_master;';            case 'tables':                return "SELECT name FROM sqlite_master WHERE type='table' "                       . 'UNION ALL SELECT name FROM sqlite_temp_master '                       . "WHERE type='table' ORDER BY name;";            case 'schema':                return 'SELECT sql FROM (SELECT * FROM sqlite_master UNION ALL '                       . 'SELECT * FROM sqlite_temp_master) '                       . "WHERE type!='meta' ORDER BY tbl_name, type DESC, name;";            case 'schemax':            case 'schema_x':                /*                 * Use like:                 * $res = $db->query($db->getSpecialQuery('schema_x', array('table' => 'table3')));                 */                return 'SELECT sql FROM (SELECT * FROM sqlite_master UNION ALL '                       . 'SELECT * FROM sqlite_temp_master) '                       . "WHERE tbl_name LIKE '{$args['table']}' AND type!='meta' "                       . 'ORDER BY type DESC, name;';            case 'alter':                /*                 * SQLite does not support ALTER TABLE; this is a helper query                 * to handle this. 'table' represents the table name, 'rows'                 * the news rows to create, 'save' the row(s) to keep _with_                 * the data.                 *                 * Use like:                 * $args = array(                 *     'table' => $table,                 *     'rows'  => "id INTEGER PRIMARY KEY, firstname TEXT, surname TEXT, datetime TEXT",                 *     'save'  => "NULL, titel, content, datetime"                 * );                 * $res = $db->query( $db->getSpecialQuery('alter', $args));                 */                $rows = strtr($args['rows'], $this->keywords);                $q = array(                    'BEGIN TRANSACTION',                    "CREATE TEMPORARY TABLE {$args['table']}_backup ({$args['rows']})",                    "INSERT INTO {$args['table']}_backup SELECT {$args['save']} FROM {$args['table']}",                    "DROP TABLE {$args['table']}",                    "CREATE TABLE {$args['table']} ({$args['rows']})",                    "INSERT INTO {$args['table']} SELECT {$rows} FROM {$args['table']}_backup",                    "DROP TABLE {$args['table']}_backup",                    'COMMIT',                );                // This is a dirty hack, since the above query will no get executed with a single                // query call; so here the query method will be called directly and return a select instead.                foreach ($q as $query) {                    $this->query($query);                }                return "SELECT * FROM {$args['table']};";            default:                return null;        }    }    // }}}    // {{{ getDbFileStats()    /**     * Get the file stats for the current database.     *     * Possible arguments are dev, ino, mode, nlink, uid, gid, rdev, size,     * atime, mtime, ctime, blksize, blocks or a numeric key between     * 0 and 12.     *     * @param string $arg Array key for stats()     * @return mixed array on an unspecified key, integer on a passed arg and     * false at a stats error.     */    function getDbFileStats($arg = '')    {        $stats = stat($this->dsn['database']);        if ($stats == false) {            return false;        }        if (is_array($stats)) {            if (is_numeric($arg)) {                if (((int)$arg <= 12) & ((int)$arg >= 0)) {                    return false;                }                return $stats[$arg ];            }            if (array_key_exists(trim($arg), $stats)) {                return $stats[$arg ];            }        }        return $stats;    }    // }}}    // {{{ escapeSimple()    /**     * Escape a string according to the current DBMS's standards     *     * In SQLite, this makes things safe for inserts/updates, but may     * cause problems when performing text comparisons against columns     * containing binary data. See the     * {@link http://php.net/sqlite_escape_string PHP manual} for more info.     *     * @param string $str  the string to be escaped     *     * @return string  the escaped string     *     * @since 1.6.1     * @see DB_common::escapeSimple()     * @internal     */    function escapeSimple($str) {        return @sqlite_escape_string($str);    }    // }}}    // {{{ modifyLimitQuery()    function modifyLimitQuery($query, $from, $count, $params = array())    {        $query = $query . " LIMIT $count OFFSET $from";        return $query;    }    // }}}    // {{{ modifyQuery()    /**     * "DELETE FROM table" gives 0 affected rows in SQLite.     *     * This little hack lets you know how many rows were deleted.     *     * @param string $query The SQL query string     * @return string The SQL query string     */    function _modifyQuery($query)    {        if ($this->options['portability'] & DB_PORTABILITY_DELETE_COUNT) {            if (preg_match('/^\s*DELETE\s+FROM\s+(\S+)\s*$/i', $query)) {                $query = preg_replace('/^\s*DELETE\s+FROM\s+(\S+)\s*$/',                                      'DELETE FROM \1 WHERE 1=1', $query);            }        }        return $query;    }    // }}}    // {{{ sqliteRaiseError()    /**     * Gather information about an error, then use that info to create a     * DB error object and finally return that object.     *     * @param  integer  $errno  PEAR error number (usually a DB constant) if     *                          manually raising an error     * @return object  DB error object     * @see errorNative()     * @see errorCode()     * @see DB_common::raiseError()     */    function sqliteRaiseError($errno = null)    {        $native = $this->errorNative();        if ($errno === null) {            $errno = $this->errorCode($native);        }        $errorcode = @sqlite_last_error($this->connection);        $userinfo = "$errorcode ** $this->last_query";        return $this->raiseError($errno, null, null, $userinfo, $native);    }    // }}}}/* * Local variables: * tab-width: 4 * c-basic-offset: 4 * End: */?>

⌨️ 快捷键说明

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