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


PHP Database::logQuery方法代码示例

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


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

示例1: execute

 /**
  * Execute a query
  *
  * @param array $bind_variables
  *
  * @throws \Exception
  *
  * @return Statement
  */
 public function execute($bind_variables = array())
 {
     if ($this->executed) {
         throw new \Exception('Statement::execute() called twice.');
     }
     // Parameters may be either named (e.g. :foo) or positional (e.g. ?).
     // Named parameters may take any type. Positional parameters are always strings.
     // Queries should use one format or the other.
     foreach ($bind_variables as $key => $bind_variable) {
         if (is_numeric($key)) {
             // Positional parameters are numeric (starting at 1)
             $key = 1 + $key;
         } else {
             // Named parameters are prefixed with a colon
             $key = ':' . $key;
         }
         switch (gettype($bind_variable)) {
             case 'NULL':
                 $this->pdo_statement->bindValue($key, $bind_variable, PDO::PARAM_NULL);
                 break;
             case 'boolean':
                 $this->pdo_statement->bindValue($key, (int) $bind_variable, PDO::PARAM_INT);
                 break;
             case 'integer':
                 $this->pdo_statement->bindValue($key, $bind_variable, PDO::PARAM_INT);
                 break;
             default:
                 $this->pdo_statement->bindValue($key, $bind_variable, PDO::PARAM_STR);
                 break;
         }
     }
     $start = microtime(true);
     $this->pdo_statement->execute();
     $end = microtime(true);
     // If it was a SELECT statement, we cannot run it again.
     $this->executed = strpos($this->pdo_statement->queryString, 'SELECT') === 0;
     Database::logQuery($this->pdo_statement->queryString, $this->pdo_statement->rowCount(), $end - $start, $bind_variables);
     return $this;
 }
开发者ID:tronsmit,项目名称:webtrees,代码行数:48,代码来源:Statement.php


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