Table of Contents
" >2.配置文件举例
Home php教程 PHP源码 MST Library 3.1 数据库连接工厂DBC

MST Library 3.1 数据库连接工厂DBC

May 25, 2016 pm 05:14 PM

MST Library 3.1 数据库连接工厂DBC

<?php

/**
 * DataBase Common Connector
 * 数据库共用连接器,连接驱动以如下的方式存放:
 * DBC/PdoOci.php
 * DBC/PdoMySQL.php
 * DBC/MySQLi.php
 * 连接驱动必须实现MST_IDBC接口
 *
 * 调用一个数据库的连接实例如下:
 * 
 * MST_DBC::connect($remote);
 * # $remote对应config中配置
 * 
 *
 * @author Janpoem
 */

interface MST_IDBC {

	public function connect(& $config);

	public function disconnect();

	public function getStatement();

	public function getConnector();

	public function getFecthMode($mode = MST_DBC::FETCH_ASSOC);

	public function lastSql(& $index = 0);

	public function lastInsertId($table, $column);

	public function & query($sql, $params = null);

	public function execute($sql, $params = null);

	public function select($conditions, $params = null);

	public function insert($table, array $data);

	public function update($table, array $target, array $data);

	public function updateAll($table, array $data);

	public function delete($table, array $target);

	public function deleteAll($table);

	public function truncate($table);

	public function showTables();

	public function getDtFormat();

	public function startTransaction();

	public function commit();

	public function rollBack();

	public function takeOverDisconnect();

	public function fetch($style = MST_DBC::FETCH_ASSOC);

	public function fetchAll($style = MST_DBC::FETCH_ASSOC);

	public function quote($val);

	public function isAutoCommit();
}

abstract class MST_DBC {

	const
		LOCAL		= &#39;default&#39;,
		PDO_MYSQL	= &#39;mysql&#39;,
		PDO_OCI		= &#39;oracle&#39;,
		OCI8		= &#39;oci8&#39;,
		CLOB		= &#39;CLOB&#39;,
		BLOB		= &#39;BLOB&#39;,
		CREATE		= &#39;create&#39;,
		UPDATE		= &#39;update&#39;,
		DELETE		= &#39;delete&#39;,
		FETCH_ASSOC	= 2,
		FETCH_NUM	= 3,
		FETCH_BOTH	= 4;

	private static
		$_dbConfigKey = &#39;database&#39;,
		$_dbConfig = array(),
		$_adapters = array(
			self::PDO_MYSQL		=> &#39;PdoMySQL&#39;,
			self::PDO_OCI		=> &#39;PdoOci&#39;,
			self::OCI8			=> &#39;Oci8&#39;,
		),
		$_importAdapters = array(),
		$_register = array();

	protected static
		$_querySql = array(),
		$_lastHash = null;

	final static public function & connect($remote = null) {
		if ($remote == null) $remote = self::LOCAL;
		if (!isset(self::$_register[$remote])) {
			$config = MST_Core::getConfig(self::$_dbConfigKey, $remote);
			if (empty($config))
				MST_Core::error(301, $remote);
			if (empty($config[&#39;adapter&#39;])
			 || !isset(self::$_adapters[$config[&#39;adapter&#39;]]))
				MST_Core::error(302, $remote);
			$adapter = self::$_adapters[$config[&#39;adapter&#39;]];
			$adapterClass = __CLASS__ . &#39;_&#39; . $adapter;
			if (!isset(self::$_importAdapters[$adapter])) {
				if (!MST_Core::import("MST/DBC/{$adapter}", MST_Core::P_LIB)
				 || !class_exists($adapterClass))
					MST_Core::error(302, "MST/DBC/$adapter");
				self::$_importAdapters[$adapter] = 1;
			}
			self::$_register[$remote] = new $adapterClass($config);
		}
		return self::$_register[$remote];
	}

	final static public function disconnect($remote = null) {
		if ($remote == null) {
			foreach (self::$_register as $conn) {
				if (!empty($conn)) $conn->disconnect();
			}
		}
		else {
			self::connect($remote)->disconnect();
		}
	}

	final static public function getConfig($key, $remote = self::LOCAL) {
		if (empty(self::$_dbConfig[$remote]))
			self::$_dbConfig[$remote] = MST_Core::getConfig(self::$_dbConfigKey, $remote);
		if (!empty(self::$_dbConfig[$remote][$key]))
			return self::$_dbConfig[$remote][$key];
		return null;
	}

	final static public function addAdapter($key, $val) {
		if (!isset(self::$_adapters[$key]))
			self::$_adapters[$key] = $val;
	}

	final static public function getLastSqlHash() {
		return self::$_lastHash;
	}

	/**
	 * 启动数据库事务
	 * @param string $remote 连接实例
	 */
	final static public function startTransaction($remote = self::LOCAL) {
		return self::connect($remote)->startTransaction();
	}

	/**
	 * 数据库事务提交
	 * @param string $remote 连接实例
	 */
	final static public function commit($remote = self::LOCAL) {
		return self::connect($remote)->commit();
	}

	/**
	 * 数据库事务回滚
	 * @param string $remote 连接实例
	 */
	final static public function rollBack($remote = self::LOCAL) {
		return self::connect($remote)->rollBack();
	}

	/**
	 * 接管某个连接实例的
	 * @param unknown_type $remote
	 */
	final static public function handleDisconnect($remote = self::LOCAL) {
		return self::connect($remote)->takeOverDisconnect();
	}

}
Copy after login

2.配置文件举例

 array(
	),
	MST_Core::IN_DEV => array(
		&#39;database&#39; => array(
			MST_DBC::LOCAL => array(
				&#39;adapter&#39;	=> MST_DBC::PDO_MYSQL,
				&#39;host&#39;		=> &#39;127.0.0.1&#39;,	// 数据库连接ip
				&#39;user&#39;		=> &#39;root&#39;,		// 数据库账号
				&#39;password&#39;	=> &#39;&#39;,	// 数据库密码
				&#39;dbname&#39;	=> &#39;any_db&#39;,
				&#39;prefix&#39;	=> &#39;pf&#39;,
			),
			&#39;iphone&#39; => array(
				&#39;adapter&#39;	=> MST_DBC::PDO_MYSQL,
				&#39;host&#39;		=> &#39;127.0.0.1&#39;,	// 数据库连接ip
				&#39;user&#39;		=> &#39;root&#39;,		// 数据库账号
				&#39;password&#39;	=> &#39;&#39;,	// 数据库密码
				&#39;dbname&#39;	=> &#39;any_db_iphone&#39;,
				&#39;prefix&#39;	=> false,
			),
		),
		MST_Mailer::FLAG => array(
			MST_Mailer::LOCAL => array(
				&#39;host&#39;		=> &#39;localhost&#39;,
				&#39;port&#39;		=> 25,
				&#39;debug&#39;		=> 0,
				&#39;charset&#39;	=> PROJECT_ENCODE,
				&#39;language&#39;	=> PROJECT_LANG,
				MST_Mailer::IS_SMTP 	=> true,
				MST_Mailer::SMTP_AUTH	=> false,
				MST_Mailer::FROM_MAIL	=> &#39;any@host.com&#39;,
				MST_Mailer::FROM_NAME	=> &#39;anyone&#39;,
			)
		),
	),
	MST_Core::IN_TEST => array(
		&#39;database&#39; => array(
			MST_DBC::LOCAL => array(
				&#39;adapter&#39;	=> MST_DBC::PDO_MYSQL,
				&#39;host&#39;		=> &#39;127.0.0.1&#39;,	// 数据库连接ip
				&#39;user&#39;		=> &#39;root&#39;,		// 数据库账号
				&#39;password&#39;	=> &#39;&#39;,	// 数据库密码
				&#39;dbname&#39;	=> &#39;any_db&#39;,
				&#39;prefix&#39;	=> &#39;pf&#39;,
			),
			&#39;iphone&#39; => array(
				&#39;adapter&#39;	=> MST_DBC::PDO_MYSQL,
				&#39;host&#39;		=> &#39;127.0.0.1&#39;,	// 数据库连接ip
				&#39;user&#39;		=> &#39;root&#39;,		// 数据库账号
				&#39;password&#39;	=> &#39;&#39;,	// 数据库密码
				&#39;dbname&#39;	=> &#39;any_db_iphone&#39;,
				&#39;prefix&#39;	=> false,
			),
		),
		MST_Mailer::FLAG => array(
			MST_Mailer::LOCAL => array(
				&#39;host&#39;		=> &#39;localhost&#39;,
				&#39;port&#39;		=> 25,
				&#39;debug&#39;		=> 0,
				&#39;charset&#39;	=> PROJECT_ENCODE,
				&#39;language&#39;	=> PROJECT_LANG,
				MST_Mailer::IS_SMTP 	=> true,
				MST_Mailer::SMTP_AUTH	=> false,
				MST_Mailer::FROM_MAIL	=> &#39;any@host.com&#39;,
				MST_Mailer::FROM_NAME	=> &#39;anyone&#39;,
			)
		),
	),
	MST_Core::IN_PRO => array(
		&#39;database&#39; => array(
			MST_DBC::LOCAL => array(
				&#39;adapter&#39;	=> MST_DBC::PDO_MYSQL,
				&#39;host&#39;		=> &#39;127.0.0.1&#39;,	// 数据库连接ip
				&#39;user&#39;		=> &#39;root&#39;,		// 数据库账号
				&#39;password&#39;	=> &#39;&#39;,	// 数据库密码
				&#39;dbname&#39;	=> &#39;any_db&#39;,
				&#39;prefix&#39;	=> &#39;pf&#39;,
			),
			&#39;iphone&#39; => array(
				&#39;adapter&#39;	=> MST_DBC::PDO_MYSQL,
				&#39;host&#39;		=> &#39;127.0.0.1&#39;,	// 数据库连接ip
				&#39;user&#39;		=> &#39;root&#39;,		// 数据库账号
				&#39;password&#39;	=> &#39;&#39;,	// 数据库密码
				&#39;dbname&#39;	=> &#39;any_db_iphone&#39;,
				&#39;prefix&#39;	=> false,
			),
		),
		MST_Mailer::FLAG => array(
			MST_Mailer::LOCAL => array(
				&#39;host&#39;		=> &#39;localhost&#39;,
				&#39;port&#39;		=> 25,
				&#39;debug&#39;		=> 0,
				&#39;charset&#39;	=> PROJECT_ENCODE,
				&#39;language&#39;	=> PROJECT_LANG,
				MST_Mailer::IS_SMTP 	=> true,
				MST_Mailer::SMTP_AUTH	=> false,
				MST_Mailer::FROM_MAIL	=> &#39;any@host.com&#39;,
				MST_Mailer::FROM_NAME	=> &#39;anyone&#39;,
			)
		),
	),
);
Copy after login

           

       

 以上就是MST Library 3.1 数据库连接工厂DBC的内容,更多相关内容请关注PHP中文网(www.php.cn)!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1666
14
PHP Tutorial
1273
29
C# Tutorial
1253
24