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

📄 adodb-mysql.inc.php

📁 Cacti是一套基于PHP,MySQL,SNMP及RRDTool开发的网络流量监测图形分析工具。 它通过snmpget来获取数据
💻 PHP
📖 第 1 页 / 共 2 页
字号:
<?php/*V4.54 5 Nov 2004  (c) 2000-2004 John Lim (jlim@natsoft.com.my). All rights reserved.  Released under both BSD license and Lesser GPL library license.  Whenever there is any discrepancy between the two licenses,  the BSD license will take precedence.  Set tabs to 8.  MySQL code that does not support transactions. Use mysqlt if you need transactions.  Requires mysql client. Works on Windows and Unix. 28 Feb 2001: MetaColumns bug fix - suggested by  Freek Dijkstra (phpeverywhere@macfreek.com)*/// security - hide pathsif (!defined('ADODB_DIR')) die();if (! defined("_ADODB_MYSQL_LAYER")) { define("_ADODB_MYSQL_LAYER", 1 );class ADODB_mysql extends ADOConnection {	var $databaseType = 'mysql';	var $dataProvider = 'mysql';	var $hasInsertID = true;	var $hasAffectedRows = true;	var $metaTablesSQL = "SHOW TABLES";	var $metaColumnsSQL = "SHOW COLUMNS FROM %s";	var $fmtTimeStamp = "'Y-m-d H:i:s'";	var $hasLimit = true;	var $hasMoveFirst = true;	var $hasGenID = true;	var $isoDates = true; // accepts dates in ISO format	var $sysDate = 'CURDATE()';	var $sysTimeStamp = 'NOW()';	var $hasTransactions = false;	var $forceNewConnect = false;	var $poorAffectedRows = true;	var $clientFlags = 0;	var $substr = "substring";	var $nameQuote = '`';		/// string to use to quote identifiers and names	function ADODB_mysql()	{		if (defined('ADODB_EXTENSION')) $this->rsPrefix .= 'ext_';	}	function ServerInfo()	{		$arr['description'] = ADOConnection::GetOne("select version()");		$arr['version'] = ADOConnection::_findvers($arr['description']);		return $arr;	}	function IfNull( $field, $ifNull )	{		return " IFNULL($field, $ifNull) "; // if MySQL	}	function &MetaTables($ttype=false,$showSchema=false,$mask=false)	{		$save = $this->metaTablesSQL;		if ($showSchema && is_string($showSchema)) {			$this->metaTablesSQL .= " from $showSchema";		}		if ($mask) {			$mask = $this->qstr($mask);			$this->metaTablesSQL .= " like $mask";		}		$ret =& ADOConnection::MetaTables($ttype,$showSchema);		$this->metaTablesSQL = $save;		return $ret;	}	function &MetaIndexes ($table, $primary = FALSE, $owner=false)	{        // save old fetch mode        global $ADODB_FETCH_MODE;		$false = false;        $save = $ADODB_FETCH_MODE;        $ADODB_FETCH_MODE = ADODB_FETCH_NUM;        if ($this->fetchMode !== FALSE) {               $savem = $this->SetFetchMode(FALSE);        }        // get index details        $rs = $this->Execute(sprintf('SHOW INDEX FROM %s',$table));        // restore fetchmode        if (isset($savem)) {                $this->SetFetchMode($savem);        }        $ADODB_FETCH_MODE = $save;        if (!is_object($rs)) {                return $false;        }        $indexes = array ();        // parse index data into array        while ($row = $rs->FetchRow()) {                if ($primary == FALSE AND $row[2] == 'PRIMARY') {                        continue;                }                if (!isset($indexes[$row[2]])) {                        $indexes[$row[2]] = array(                                'unique' => ($row[1] == 0),                                'columns' => array()                        );                }                $indexes[$row[2]]['columns'][$row[3] - 1] = $row[4];        }        // sort columns by order in the index        foreach ( array_keys ($indexes) as $index )        {                ksort ($indexes[$index]['columns']);        }        return $indexes;	}	// if magic quotes disabled, use mysql_real_escape_string()	function qstr($s,$magic_quotes=false)	{		if (!$magic_quotes) {			if (ADODB_PHPVER >= 0x4300) {				if (is_resource($this->_connectionID))					return "'".mysql_real_escape_string($s,$this->_connectionID)."'";			}			if ($this->replaceQuote[0] == '\\'){				$s = adodb_str_replace(array('\\',"\0"),array('\\\\',"\\\0"),$s);			}			return  "'".str_replace("'",$this->replaceQuote,$s)."'";		}		// undo magic quotes for "		$s = str_replace('\\"','"',$s);		return "'$s'";	}	function _insertid()	{		return mysql_insert_id($this->_connectionID);	}	function GetOne($sql,$inputarr=false)	{		if (strncasecmp($sql,'sele',4) == 0) {			$rs =& $this->SelectLimit($sql,1,-1,$inputarr);			if ($rs) {				$rs->Close();				if ($rs->EOF) return false;				return reset($rs->fields);			}		} else {			return ADOConnection::GetOne($sql,$inputarr);		}		return false;	}	function BeginTrans()	{		if ($this->debug) ADOConnection::outp("Transactions not supported in 'mysql' driver. Use 'mysqlt' or 'mysqli' driver");	}	function _affectedrows()	{			return mysql_affected_rows($this->_connectionID);	} 	// See http://www.mysql.com/doc/M/i/Miscellaneous_functions.html	// Reference on Last_Insert_ID on the recommended way to simulate sequences 	var $_genIDSQL = "update %s set id=LAST_INSERT_ID(id+1);";	var $_genSeqSQL = "create table %s (id int not null)";	var $_genSeq2SQL = "insert into %s values (%s)";	var $_dropSeqSQL = "drop table %s";	function CreateSequence($seqname='adodbseq',$startID=1)	{		if (empty($this->_genSeqSQL)) return false;		$u = strtoupper($seqname);		$ok = $this->Execute(sprintf($this->_genSeqSQL,$seqname));		if (!$ok) return false;		return $this->Execute(sprintf($this->_genSeq2SQL,$seqname,$startID-1));	}	function GenID($seqname='adodbseq',$startID=1)	{		// post-nuke sets hasGenID to false		if (!$this->hasGenID) return false;		$savelog = $this->_logsql;		$this->_logsql = false;		$getnext = sprintf($this->_genIDSQL,$seqname);		$holdtransOK = $this->_transOK; // save the current status		$rs = @$this->Execute($getnext);		if (!$rs) {			if ($holdtransOK) $this->_transOK = true; //if the status was ok before reset			$u = strtoupper($seqname);			$this->Execute(sprintf($this->_genSeqSQL,$seqname));			$this->Execute(sprintf($this->_genSeq2SQL,$seqname,$startID-1));			$rs = $this->Execute($getnext);		}		$this->genID = mysql_insert_id($this->_connectionID);		if ($rs) $rs->Close();		$this->_logsql = $savelog;		return $this->genID;	}  	function &MetaDatabases()	{		$qid = mysql_list_dbs($this->_connectionID);		$arr = array();		$i = 0;		$max = mysql_num_rows($qid);		while ($i < $max) {			$db = mysql_tablename($qid,$i);			if ($db != 'mysql') $arr[] = $db;			$i += 1;		}		return $arr;	}	// Format date column in sql string given an input format that understands Y M D	function SQLDate($fmt, $col=false)	{		if (!$col) $col = $this->sysTimeStamp;		$s = 'DATE_FORMAT('.$col.",'";		$concat = false;		$len = strlen($fmt);		for ($i=0; $i < $len; $i++) {			$ch = $fmt[$i];			switch($ch) {			default:				if ($ch == '\\') {					$i++;					$ch = substr($fmt,$i,1);				}				/** FALL THROUGH */			case '-':			case '/':				$s .= $ch;				break;			case 'Y':			case 'y':				$s .= '%Y';				break;			case 'M':				$s .= '%b';				break;			case 'm':				$s .= '%m';				break;			case 'D':			case 'd':				$s .= '%d';				break;			case 'Q':			case 'q':				$s .= "'),Quarter($col)";				if ($len > $i+1) $s .= ",DATE_FORMAT($col,'";				else $s .= ",('";				$concat = true;				break;			case 'H':				$s .= '%H';				break;			case 'h':				$s .= '%I';				break;			case 'i':				$s .= '%i';				break;			case 's':				$s .= '%s';				break;			case 'a':			case 'A':				$s .= '%p';				break;			}		}		$s.="')";		if ($concat) $s = "CONCAT($s)";		return $s;	}	// returns concatenated string	// much easier to run "mysqld --ansi" or "mysqld --sql-mode=PIPES_AS_CONCAT" and use || operator	function Concat()	{		$s = "";		$arr = func_get_args();		// suggestion by andrew005@mnogo.ru		$s = implode(',',$arr);		if (strlen($s) > 0) return "CONCAT($s)";		else return '';	}	function OffsetDate($dayFraction,$date=false)	{		if (!$date) $date = $this->sysDate;		return "from_unixtime(unix_timestamp($date)+($dayFraction)*24*3600)";	}	// returns true or false	function _connect($argHostname, $argUsername, $argPassword, $argDatabasename)	{		if (ADODB_PHPVER >= 0x4300)			$this->_connectionID = @mysql_connect($argHostname,$argUsername,$argPassword,												$this->forceNewConnect,$this->clientFlags);		else if (ADODB_PHPVER >= 0x4200)			$this->_connectionID = @mysql_connect($argHostname,$argUsername,$argPassword,												$this->forceNewConnect);		else			$this->_connectionID = @mysql_connect($argHostname,$argUsername,$argPassword);		if ($this->_connectionID === false) return false;		if ($argDatabasename) return $this->SelectDB($argDatabasename);		return true;	}

⌨️ 快捷键说明

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