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

📄 mysql.class.php

📁 很棒的在线教学系统
💻 PHP
📖 第 1 页 / 共 2 页
字号:
    }    /**     * Given one correct XMLDBField and the new name, returns the SQL statements     * to rename it (inside one array)     * MySQL is pretty diferent from the standard to justify this oveloading     */    function getRenameFieldSQL($xmldb_table, $xmldb_field, $newname) {        $results = array();  //Array where all the sentences will be stored    /// Need a clone of xmldb_field to perform the change leaving original unmodified        $xmldb_field_clone = clone($xmldb_field);    /// Change the name of the field to perform the change        $xmldb_field_clone->setName($xmldb_field_clone->getName() . ' ' . $newname);        $results[] = 'ALTER TABLE ' . $this->getTableName($xmldb_table) . ' CHANGE ' .                     $this->getFieldSQL($xmldb_field_clone);        return $results;    }    /**     * Given one XMLDBTable and one XMLDBField, return the SQL statements needded to drop its default      * (usually invoked from getModifyDefaultSQL()     */    function getDropDefaultSQL($xmldb_table, $xmldb_field) {    /// Just a wrapper over the getAlterFieldSQL() function for MySQL that    /// is capable of handling defaults        return $this->getAlterFieldSQL($xmldb_table, $xmldb_field);    }    /**     * Given one XMLDB Field, return its enum SQL     */    function getEnumSQL ($xmldb_field) {        return 'enum(' . implode(', ', $xmldb_field->getEnumValues()) . ')';    }    /**     * Returns the code (in array) needed to add one comment to the table     */    function getCommentSQL ($xmldb_table) {        $comment = '';        if ($xmldb_table->getComment()) {            $comment .= 'ALTER TABLE ' . $this->getTableName($xmldb_table);            $comment .= " COMMENT='" . addslashes(substr($xmldb_table->getComment(), 0, 60)) . "'";        }        return array($comment);    }    /**     * Given one XMLDBTable returns one array with all the check constrainsts     * in the table (fetched from DB)     * Optionally the function allows one xmldb_field to be specified in     * order to return only the check constraints belonging to one field.     * Each element contains the name of the constraint and its description     * If no check constraints are found, returns an empty array     * MySQL doesn't have check constraints in this implementation, but     * we return them based on the enum fields in the table     */    function getCheckConstraintsFromDB($xmldb_table, $xmldb_field = null) {        global $db;        $results = array();        $tablename = $this->getTableName($xmldb_table);    /// Fetch all the columns in the table        if ($columns = $db->MetaColumns($tablename)) {        /// Normalize array keys            $columns = array_change_key_case($columns, CASE_LOWER);        /// Iterate over columns searching for enums            foreach ($columns as $key => $column) {            /// Enum found, let's add it to the constraints list                if (!empty($column->enums)) {                    $result = new object;                    $result->name = $key;                    $result->description = implode(', ', $column->enums);                    $results[$key] = $result;                }            }        }    /// Filter by the required field if specified        if ($xmldb_field) {            $filter = $xmldb_field->getName();        /// Check if some of the checks belong to the field (easy under MySQL)            if (array_key_exists($filter, $results)) {                $results = array($filter => $results[$filter]);            } else {                $results = array();            }        }        return $results;    }    /**     * Given one object name and it's type (pk, uk, fk, ck, ix, uix, seq, trg)     * return if such name is currently in use (true) or no (false)     * (invoked from getNameForObject()     */    function isNameInUse($object_name, $type, $table_name) {        global $db;    /// Calculate the real table name        $xmldb_table = new XMLDBTable($table_name);        $tname = $this->getTableName($xmldb_table);                switch($type) {            case 'ix':            case 'uix':            /// First of all, check table exists                $metatables = $db->MetaTables();                $metatables = array_flip($metatables);                $metatables = array_change_key_case($metatables, CASE_LOWER);                if (array_key_exists($tname,  $metatables)) {                /// Fetch all the indexes in the table                    if ($indexes = $db->MetaIndexes($tname)) {                    /// Normalize array keys                        $indexes = array_change_key_case($indexes, CASE_LOWER);                    /// Look for existing index in array                        if (array_key_exists(strtolower($object_name), $indexes)) {                            return true;                        }                    }                }                break;        }        return false; //No name in use found    }    /**     * Returns an array of reserved words (lowercase) for this DB     */    function getReservedWords() {    /// This file contains the reserved words for MySQL databases    /// from http://dev.mysql.com/doc/refman/6.0/en/reserved-words.html        $reserved_words = array (            'accessible', 'add', 'all', 'alter', 'analyze', 'and', 'as', 'asc',            'asensitive', 'before', 'between', 'bigint', 'binary',            'blob', 'both', 'by', 'call', 'cascade', 'case', 'change',            'char', 'character', 'check', 'collate', 'column',            'condition', 'connection', 'constraint', 'continue',            'convert', 'create', 'cross', 'current_date', 'current_time',            'current_timestamp', 'current_user', 'cursor', 'database',            'databases', 'day_hour', 'day_microsecond',            'day_minute', 'day_second', 'dec', 'decimal', 'declare',            'default', 'delayed', 'delete', 'desc', 'describe',            'deterministic', 'distinct', 'distinctrow', 'div', 'double',            'drop', 'dual', 'each', 'else', 'elseif', 'enclosed', 'escaped',            'exists', 'exit', 'explain', 'false', 'fetch', 'float', 'float4',            'float8', 'for', 'force', 'foreign', 'from', 'fulltext', 'grant',            'group', 'having', 'high_priority', 'hour_microsecond',            'hour_minute', 'hour_second', 'if', 'ignore', 'in', 'index',            'infile', 'inner', 'inout', 'insensitive', 'insert', 'int', 'int1',            'int2', 'int3', 'int4', 'int8', 'integer', 'interval', 'into', 'is',            'iterate', 'join', 'key', 'keys', 'kill', 'leading', 'leave', 'left',            'like', 'limit', 'linear', 'lines', 'load', 'localtime', 'localtimestamp',            'lock', 'long', 'longblob', 'longtext', 'loop', 'low_priority', 'master_heartbeat_period',            'master_ssl_verify_server_cert', 'match', 'mediumblob', 'mediumint', 'mediumtext',            'middleint', 'minute_microsecond', 'minute_second',            'mod', 'modifies', 'natural', 'not', 'no_write_to_binlog',            'null', 'numeric', 'on', 'optimize', 'option', 'optionally',            'or', 'order', 'out', 'outer', 'outfile', 'overwrite', 'precision', 'primary',            'procedure', 'purge', 'raid0', 'range', 'read', 'read_only', 'read_write', 'reads', 'real',            'references', 'regexp', 'release', 'rename', 'repeat', 'replace',            'require', 'restrict', 'return', 'revoke', 'right', 'rlike', 'schema',            'schemas', 'second_microsecond', 'select', 'sensitive',            'separator', 'set', 'show', 'smallint', 'soname', 'spatial',            'specific', 'sql', 'sqlexception', 'sqlstate', 'sqlwarning',            'sql_big_result', 'sql_calc_found_rows', 'sql_small_result',            'ssl', 'starting', 'straight_join', 'table', 'terminated', 'then',            'tinyblob', 'tinyint', 'tinytext', 'to', 'trailing', 'trigger', 'true',            'undo', 'union', 'unique', 'unlock', 'unsigned', 'update',            'upgrade', 'usage', 'use', 'using', 'utc_date', 'utc_time',            'utc_timestamp', 'values', 'varbinary', 'varchar', 'varcharacter',            'varying', 'when', 'where', 'while', 'with', 'write', 'x509',            'xor', 'year_month', 'zerofill'        );        return $reserved_words;    }}?>

⌨️ 快捷键说明

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