mssql.php
来自「PhpWiki是sourceforge的一个开源项目」· PHP 代码 · 共 739 行 · 第 1/2 页
PHP
739 行
$result = $this->createSequence($seq_name); if (DB::isError($result)) { return $this->raiseError($result); } } elseif (!DB::isError($result)) { $result =& $this->query("SELECT @@IDENTITY FROM $seqname"); $repeat = 0; } else { $repeat = false; } } while ($repeat); if (DB::isError($result)) { return $this->raiseError($result); } $result = $result->fetchRow(DB_FETCHMODE_ORDERED); return $result[0]; } /** * 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); return $this->query("CREATE TABLE $seqname ". '([id] [int] IDENTITY (1, 1) NOT NULL ,' . '[vapor] [int] NULL)'); } // }}} // {{{ 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"); } // }}} // {{{ errorNative() /** * Determine MS SQL Server error code by querying @@ERROR. * * @return mixed mssql's native error code or DB_ERROR if unknown. */ function errorNative() { $res = @mssql_query('select @@ERROR as ErrorCode', $this->connection); if (!$res) { return DB_ERROR; } $row = @mssql_fetch_row($res); return $row[0]; } // }}} // {{{ errorCode() /** * Determine PEAR::DB error code from mssql's native codes. * * If <var>$nativecode</var> isn't known yet, it will be looked up. * * @param mixed $nativecode mssql error code, if known * @return integer an error number from a DB error constant * @see errorNative() */ function errorCode($nativecode = null) { if (!$nativecode) { $nativecode = $this->errorNative(); } if (isset($this->errorcode_map[$nativecode])) { return $this->errorcode_map[$nativecode]; } else { return DB_ERROR; } } // }}} // {{{ mssqlRaiseError() /** * Gather information about an error, then use that info to create a * DB error object and finally return that object. * * @param integer $code PEAR error number (usually a DB constant) if * manually raising an error * @return object DB error object * @see errorCode() * @see errorNative() * @see DB_common::raiseError() */ function mssqlRaiseError($code = null) { $message = @mssql_get_last_message(); if (!$code) { $code = $this->errorNative(); } return $this->raiseError($this->errorCode($code), null, null, null, "$code - $message"); } // }}} // {{{ tableInfo() /** * Returns information about a table or a result set. * * NOTE: only supports 'table' and 'flags' if <var>$result</var> * is a table name. * * @param object|string $result DB_result object from a query or a * string containing the name of a table * @param int $mode a valid tableInfo mode * @return array an associative array with the information requested * or an error object if something is wrong * @access public * @internal * @see DB_common::tableInfo() */ function tableInfo($result, $mode = null) { if (isset($result->result)) { /* * Probably received a result object. * Extract the result resource identifier. */ $id = $result->result; $got_string = false; } elseif (is_string($result)) { /* * Probably received a table name. * Create a result resource identifier. */ if (!@mssql_select_db($this->_db, $this->connection)) { return $this->mssqlRaiseError(DB_ERROR_NODBSELECTED); } $id = @mssql_query("SELECT * FROM $result WHERE 1=0", $this->connection); $got_string = true; } else { /* * Probably received a result resource identifier. * Copy it. * Depricated. Here for compatibility only. */ $id = $result; $got_string = false; } if (!is_resource($id)) { return $this->mssqlRaiseError(DB_ERROR_NEED_MORE_DATA); } if ($this->options['portability'] & DB_PORTABILITY_LOWERCASE) { $case_func = 'strtolower'; } else { $case_func = 'strval'; } $count = @mssql_num_fields($id); // made this IF due to performance (one if is faster than $count if's) if (!$mode) { for ($i=0; $i<$count; $i++) { $res[$i]['table'] = $got_string ? $case_func($result) : ''; $res[$i]['name'] = $case_func(@mssql_field_name($id, $i)); $res[$i]['type'] = @mssql_field_type($id, $i); $res[$i]['len'] = @mssql_field_length($id, $i); // We only support flags for tables $res[$i]['flags'] = $got_string ? $this->_mssql_field_flags($result, $res[$i]['name']) : ''; } } else { // full $res['num_fields']= $count; for ($i=0; $i<$count; $i++) { $res[$i]['table'] = $got_string ? $case_func($result) : ''; $res[$i]['name'] = $case_func(@mssql_field_name($id, $i)); $res[$i]['type'] = @mssql_field_type($id, $i); $res[$i]['len'] = @mssql_field_length($id, $i); // We only support flags for tables $res[$i]['flags'] = $got_string ? $this->_mssql_field_flags($result, $res[$i]['name']) : ''; 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) { @mssql_free_result($id); } return $res; } // }}} // {{{ getSpecialQuery() /** * Returns the query needed to get some backend info * @param string $type What kind of info you want to retrieve * @return string The SQL query string */ function getSpecialQuery($type) { switch ($type) { case 'tables': return "select name from sysobjects where type = 'U' order by name"; case 'views': return "select name from sysobjects where type = 'V'"; default: return null; } } // }}} // {{{ _mssql_field_flags() /** * Get the flags for a field, currently supports "not_null", "primary_key", * "auto_increment" (mssql identity), "timestamp" (mssql timestamp), * "unique_key" (mssql unique index, unique check or primary_key) and * "multiple_key" (multikey index) * * mssql timestamp is NOT similar to the mysql timestamp so this is maybe * not useful at all - is the behaviour of mysql_field_flags that primary * keys are alway unique? is the interpretation of multiple_key correct? * * @param string The table name * @param string The field * @author Joern Barthel <j_barthel@web.de> * @access private */ function _mssql_field_flags($table, $column) { static $tableName = null; static $flags = array(); if ($table != $tableName) { $flags = array(); $tableName = $table; // get unique and primary keys $res = $this->getAll("EXEC SP_HELPINDEX[$table]", DB_FETCHMODE_ASSOC); foreach ($res as $val) { $keys = explode(', ', $val['index_keys']); if (sizeof($keys) > 1) { foreach ($keys as $key) { $this->_add_flag($flags[$key], 'multiple_key'); } } if (strpos($val['index_description'], 'primary key')) { foreach ($keys as $key) { $this->_add_flag($flags[$key], 'primary_key'); } } elseif (strpos($val['index_description'], 'unique')) { foreach ($keys as $key) { $this->_add_flag($flags[$key], 'unique_key'); } } } // get auto_increment, not_null and timestamp $res = $this->getAll("EXEC SP_COLUMNS[$table]", DB_FETCHMODE_ASSOC); foreach ($res as $val) { $val = array_change_key_case($val, CASE_LOWER); if ($val['nullable'] == '0') { $this->_add_flag($flags[$val['column_name']], 'not_null'); } if (strpos($val['type_name'], 'identity')) { $this->_add_flag($flags[$val['column_name']], 'auto_increment'); } if (strpos($val['type_name'], 'timestamp')) { $this->_add_flag($flags[$val['column_name']], 'timestamp'); } } } if (array_key_exists($column, $flags)) { return(implode(' ', $flags[$column])); } return ''; } // }}} // {{{ _add_flag() /** * Adds a string to the flags array if the flag is not yet in there * - if there is no flag present the array is created. * * @param reference Reference to the flag-array * @param value The flag value * @access private * @author Joern Barthel <j_barthel@web.de> */ function _add_flag(&$array, $value) { if (!is_array($array)) { $array = array($value); } elseif (!in_array($value, $array)) { array_push($array, $value); } } // }}} // {{{ quoteIdentifier() /** * Quote a string so it can be safely used as a table / column name * * Quoting style depends on which database driver is being used. * * @param string $str identifier name to be quoted * * @return string quoted identifier string * * @since 1.6.0 * @access public */ function quoteIdentifier($str) { return '[' . str_replace(']', ']]', $str) . ']'; } // }}}}/* * Local variables: * tab-width: 4 * c-basic-offset: 4 * End: */?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?