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


PHP ExceptionHandler::dbexNoQueryFound方法代码示例

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


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

示例1: sqlQuery

 /**
  * This method will execute an SQL statement using mysql_query() function
  * @param String $sql SQL statement to be executed
  * @return ResultResource If the statement executed success, boolean false in an error
  */
 public function sqlQuery($sql)
 {
     if (isset($this->conn) && $sql != '') {
         $this->result = mysql_query($sql);
         if ($this->result) {
             return $this->result;
         }
         /* 
          * Return false if duplicate key is entered
          * TODO: Throw an exception here, and chanage code to catch it on model level
          */
         if (mysql_errno() == 1062) {
             return false;
         }
         $exception_handler = new ExceptionHandler();
         $exception_handler->dbexInvalidSQL($sql);
         return false;
     } else {
         $exception_handler = new ExceptionHandler();
         $exception_handler->dbexNoQueryFound($sql);
         return false;
     }
 }
开发者ID:THM068,项目名称:orangehrm,代码行数:28,代码来源:MySQLClass.php

示例2: sqlQuery

 function sqlQuery($sql)
 {
     if (isset($this->conn) && $sql != '') {
         $this->result = mysql_query($sql);
         if ($this->result) {
             return $this->result;
         }
         if (mysql_errno() == 1062) {
             return false;
         }
         $exception_handler = new ExceptionHandler();
         $exception_handler->dbexInvalidSQL($sql);
         return false;
     } else {
         $exception_handler = new ExceptionHandler();
         $exception_handler->dbexNoQueryFound($sql);
         return false;
     }
 }
开发者ID:noikiy,项目名称:owaspbwa,代码行数:19,代码来源:MySQLClass.php


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