Oracle 异常显示为 PHP 警告而不是错误

发布于 2024-10-16 12:07:41 字数 200 浏览 1 评论 0原文

我正在使用 oci8 接口与 Oracle 数据库进行交互。

我的问题是,每当 Oracle 代码通过适当的消息和代码引发异常时,PHP 都会发出警告而不是错误。

我需要访问错误代码,但 oci_error 总是返回 false (大概是因为它是警告而不是错误)。

有没有办法使这些警告显示为错误并正确填充对 oci_error 的调用?

I'm interacting with an Oracle database using the oci8 interface.

My problem is that whenever the Oracle code raises an exception with an appropriate message and code, PHP emits a warning and not an error.

I need access to the error code, but oci_error always returns false (presumably because it is a warning not an error).

Is there any way to cause these warnings to be shown as errors and correctly populate the call to oci_error?

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

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

发布评论

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

评论(1

温柔嚣张 2024-10-23 12:07:41

事实证明我错误地使用了API,当调用oci_error时,你必须传入语句资源。这导致获得正确的错误信息。

Turns out I was using the API incorrectly, when calling oci_error, you have to pass in the statement resource. This resulted in getting the correct error information.

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