當前位置: 首頁>>代碼示例>>PHP>>正文


PHP DatabaseFactory::createConnexion方法代碼示例

本文整理匯總了PHP中DatabaseFactory::createConnexion方法的典型用法代碼示例。如果您正苦於以下問題:PHP DatabaseFactory::createConnexion方法的具體用法?PHP DatabaseFactory::createConnexion怎麽用?PHP DatabaseFactory::createConnexion使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在DatabaseFactory的用法示例。


在下文中一共展示了DatabaseFactory::createConnexion方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getConnexion

	/**
	 * Cette méthode retourne un objet DatabaseInterface (Couche d'abstraction de connexion à la base de données)
	 *
	 * @param String $connection_name nom de la connexion à la base de données défini dans le fichier database.conf.php
	 * @return DatabaseInterface
	 */
	public function getConnexion($connection_name){
		global $_CONST;
		$pool = $_CONST["CONNECTION"][$connection_name]["POOL"];
		$dbname = $_CONST["CONNECTION"][$connection_name]["DB_NAME"];
		$critical = isset($_CONST["POOL"][$_CONST["CONNECTION"][$connection_name]["POOL"]]["CRITICAL"]) ? $_CONST["POOL"][$_CONST["CONNECTION"][$connection_name]["POOL"]]["CRITICAL"] : false;
		$force_encoding = (isset($_CONST["POOL"][$_CONST["CONNECTION"][$connection_name]["POOL"]]["FORCE_ENCODING"]) && $_CONST["POOL"][$_CONST["CONNECTION"][$connection_name]["POOL"]]["FORCE_ENCODING"]!='') ? $_CONST["POOL"][$_CONST["CONNECTION"][$connection_name]["POOL"]]["FORCE_ENCODING"] : false;

		if($pool != "" & $dbname != ""){
			// Classe Factory de création de l'objet de connection à la base de données
			require_once("DatabaseFactory.class.php");

			try{
				if (!isset($this->connexions[$pool])){
					// Création de la connection au pool et à la base de données
					$this->connexions[$pool] = DatabaseFactory::createConnexion($pool,$dbname);
				} else {
					$this->connexions[$pool]->selectDB($dbname);
					$this->connexions[$pool]->data = null;
				}
				
			} catch (DataBaseException $e) {

				// Il ne faut pas bloquer l'internaute si la connexion n'est pas critique 
				if($critical==true) {
					//include("/indispo.tpl.php");
					echo "Connexion BDD impossible.<br/>".$e->getMessage()."\n<!-- ";print_r($e);echo ' -->';
					exit;
				}

				$this->connexions[$pool] = null;
			}
		}else{
			echo "IMPOSSIBLE DE CREER UNE CONNECTION SUR LA BASE DE DONNEES : ".$pool." / ".$dbname." / ".$connection_name;
			die();
		}

		return $this->connexions[$pool];
	}
開發者ID:rhertzog,項目名稱:lcs,代碼行數:44,代碼來源:DatabaseManager.class.php


注:本文中的DatabaseFactory::createConnexion方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。