当前位置: 首页>>代码示例>>PHP>>正文


PHP Creole::getDriver方法代码示例

本文整理汇总了PHP中Creole::getDriver方法的典型用法代码示例。如果您正苦于以下问题:PHP Creole::getDriver方法的具体用法?PHP Creole::getDriver怎么用?PHP Creole::getDriver使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Creole的用法示例。


在下文中一共展示了Creole::getDriver方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: connect

 /**
  * connect()
  */
 public function connect($dsninfo, $flags = 0)
 {
     if (!($driver = Creole::getDriver($dsninfo['phptype']))) {
         throw new SQLException("No driver has been registered to handle connection type: {$type}");
     }
     $connectionClass = Creole::import($driver);
     $this->childConnection = new $connectionClass();
     $this->log("connect(): DSN: " . var_export($dsninfo, true) . ", FLAGS: " . var_export($flags, true));
     return $this->childConnection->connect($dsninfo, $flags);
 }
开发者ID:rodrigoprestesmachado,项目名称:whiteboard,代码行数:13,代码来源:DebugConnection.php

示例2: connect

 /**
  * @see Connection::connect()
  */
 function connect($dsninfo, $flags = 0)
 {
     $class = Creole::getDriver($dsninfo['phptype']);
     $class = Creole::import($class);
     $this->driver = new $class();
 }
开发者ID:BackupTheBerlios,项目名称:php5cms-svn,代码行数:9,代码来源:MyCatchallConnection.php

示例3: connect

 /**
  * connect()
  */
 public function connect($dsninfo, $flags = 0)
 {
     if (!($driver = Creole::getDriver($dsninfo['phptype']))) {
         throw new SQLException("No driver has been registered to handle connection type: {$type}");
     }
     global $_DBArray;
     if (!isset($_DBArray) && isset($_SESSION['_DBArray'])) {
         //throw new SQLException("No Database Array defined for this connection but exists in session");
         //Added by JHL to avoid errors trying to execute query of a dbarray on June 25, 2011
         $_DBArray = $_SESSION['_DBArray'];
     }
     if (!isset($_DBArray)) {
         throw new SQLException("No Database Array defined for this connection");
     }
     $this->_DBArray = $_DBArray;
     return true;
 }
开发者ID:emildev35,项目名称:processmaker,代码行数:20,代码来源:DBArrayConnection.php


注:本文中的Creole::getDriver方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。