3

最近,我正在学习PHPwithCodeIgniter框架。db_debug = TRUE我正在研究异常处理,但让我感到惊讶的是,在database.php设置中异常处理不适用于数据库错误。

如果db_debug = FALSE,我可以抛出并捕获错误,但是当它是 时TRUE,它会直接显示带有数据库错误的页面。

这是我的代码:

Model

    $this->db->insert('tbl_name',$data);
    if (strpos($this->db->_error_message(),'constraint_name') !== FALSE)
    {
        throw new UniqueConstraintException($this->db->_error_message()); // UniqueConstraintException is customized excpetion
    }

Controller

        try
        {
             //calling the method from model having above code
        }
        catch(UniqueConstraintException $ex)
        {
              echo "There is already item with same item name";
        }
        catch(Exception $ex)
        {
             echo $ex->getMessage();
        }

即使有db_debug = TRUE设置,我可以对数据库错误进行异常处理吗?

4

1 回答 1

10

CodeIgniter 的人对 oop 一无所知。当您查看代码时,您会在 DB 驱动程序中发现一百万次这样的事情(对 DRY 也一无所知):

if (<some condition>) {
    if ($this->db_debug) {
        log_message('error', 'Invalid query: '.$sql);
        return $this->display_error('db_invalid_query');
    }
    return FALSE;
}

所以不,你不能禁用这个“功能”。但是,您可以扩展CI_DB_driver 类来解决这个问题,但是由于缺少 DRY 代码,您必须重写该类的几乎所有内容......

于 2013-01-29T10:11:22.417 回答