PHP SQLite3 捕获所有错误

发布于 2024-11-18 05:10:54 字数 356 浏览 1 评论 0原文

我正在尝试捕获 PHP 中所有 SQLite3 错误的方法?我已经尝试了很多,它们似乎都有效。考虑下面的代码,是否足以捕获所有错误?有人可以提出其他建议吗?

$result = $stmt->execute();
if ($this->db->lastErrorCode()){
    throw new DatabaseError($this->db->lastErrorMsg(), 
                            $this->db->lastErrorCode());
} else {
    return $this->db->changes();
}

I am trying ways to catch all SQLite3 errors in PHP? I have tried many and they all seem to work. Consider the code below, is it enough to catch all errors? Can someone suggest anything else?

$result = $stmt->execute();
if ($this->db->lastErrorCode()){
    throw new DatabaseError($this->db->lastErrorMsg(), 
                            $this->db->lastErrorCode());
} else {
    return $this->db->changes();
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蹲墙角沉默 2024-11-25 05:10:54

我认为这实际上已经足够了,因为当然,当出现错误时会有一个错误代码,所以这必须有效。

I think this is actually enough because there's an error code when an error is raised of course so this must work.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文