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


PHP DatabaseBase::reportQueryError方法代码示例

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


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

示例1: createTables

 /**
  * Create database tables from scratch.
  *
  * @return Status
  */
 public function createTables()
 {
     $status = $this->getConnection();
     if (!$status->isOK()) {
         return $status;
     }
     $this->db->selectDB($this->getVar('wgDBname'));
     if ($this->db->tableExists('archive', __METHOD__)) {
         $status->warning('config-install-tables-exist');
         $this->enableLB();
         return $status;
     }
     $this->db->setFlag(DBO_DDLMODE);
     // For Oracle's handling of schema files
     $this->db->begin(__METHOD__);
     $error = $this->db->sourceFile($this->db->getSchemaPath());
     if ($error !== true) {
         $this->db->reportQueryError($error, 0, '', __METHOD__);
         $this->db->rollback(__METHOD__);
         $status->fatal('config-install-tables-failed', $error);
     } else {
         $this->db->commit(__METHOD__);
     }
     // Resume normal operations
     if ($status->isOk()) {
         $this->enableLB();
     }
     return $status;
 }
开发者ID:Grprashanthkumar,项目名称:ColfusionWeb,代码行数:34,代码来源:DatabaseInstaller.php

示例2: stepApplySourceFile

 /**
  * Apply a SQL source file to the database as part of running an installation step.
  *
  * @param string $sourceFileMethod
  * @param string $stepName
  * @param string $archiveTableMustNotExist
  * @return Status
  */
 private function stepApplySourceFile($sourceFileMethod, $stepName, $archiveTableMustNotExist = false)
 {
     $status = $this->getConnection();
     if (!$status->isOK()) {
         return $status;
     }
     $this->db->selectDB($this->getVar('wgDBname'));
     if ($archiveTableMustNotExist && $this->db->tableExists('archive', __METHOD__)) {
         $status->warning("config-{$stepName}-tables-exist");
         $this->enableLB();
         return $status;
     }
     $this->db->setFlag(DBO_DDLMODE);
     // For Oracle's handling of schema files
     $this->db->begin(__METHOD__);
     $error = $this->db->sourceFile(call_user_func(array($this->db, $sourceFileMethod)));
     if ($error !== true) {
         $this->db->reportQueryError($error, 0, '', __METHOD__);
         $this->db->rollback(__METHOD__);
         $status->fatal("config-{$stepName}-tables-failed", $error);
     } else {
         $this->db->commit(__METHOD__);
     }
     // Resume normal operations
     if ($status->isOk()) {
         $this->enableLB();
     }
     return $status;
 }
开发者ID:MediaWiki-stable,项目名称:1.26.1,代码行数:37,代码来源:DatabaseInstaller.php

示例3: count

 /**
  * @param DatabaseBase $db
  * @param resource $stmt A valid OCI statement identifier
  * @param bool $unique
  */
 function __construct(&$db, $stmt, $unique = false)
 {
     $this->db =& $db;
     $this->nrows = oci_fetch_all($stmt, $this->rows, 0, -1, OCI_FETCHSTATEMENT_BY_ROW | OCI_NUM);
     if ($this->nrows === false) {
         $e = oci_error($stmt);
         $db->reportQueryError($e['message'], $e['code'], '', __METHOD__);
         $this->free();
         return;
     }
     if ($unique) {
         $this->rows = $this->array_unique_md($this->rows);
         $this->nrows = count($this->rows);
     }
     if ($this->nrows > 0) {
         foreach ($this->rows[0] as $k => $v) {
             $this->columns[$k] = strtolower(oci_field_name($stmt, $k + 1));
         }
     }
     $this->cursor = 0;
     oci_free_statement($stmt);
 }
开发者ID:mb720,项目名称:mediawiki,代码行数:27,代码来源:DatabaseOracle.php

示例4: reportQueryError

 function reportQueryError($error, $errno, $sql, $fname, $tempIgnore = false)
 {
     /* Transaction stays in the ERROR state until rolledback */
     if ($tempIgnore) {
         /* Check for constraint violation */
         if ($errno === '23505') {
             parent::reportQueryError($error, $errno, $sql, $fname, $tempIgnore);
             return;
         }
     }
     /* Don't ignore serious errors */
     $this->rollback(__METHOD__);
     parent::reportQueryError($error, $errno, $sql, $fname, false);
 }
开发者ID:nischayn22,项目名称:mediawiki-core,代码行数:14,代码来源:DatabasePostgres.php

示例5: reportQueryError

 function reportQueryError($error, $errno, $sql, $fname, $tempIgnore = false)
 {
     if ($tempIgnore) {
         /* Check for constraint violation */
         if ($errno === '23505') {
             parent::reportQueryError($error, $errno, $sql, $fname, $tempIgnore);
             return;
         }
     }
     /* Transaction stays in the ERROR state until rolled back */
     if ($this->mTrxLevel) {
         $ignore = $this->ignoreErrors(true);
         $this->rollback(__METHOD__);
         $this->ignoreErrors($ignore);
     }
     parent::reportQueryError($error, $errno, $sql, $fname, false);
 }
开发者ID:kynikos,项目名称:archlinux-mediawiki,代码行数:17,代码来源:DatabasePostgres.php


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