Oracle 异常显示为 PHP 警告而不是错误
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
事实证明我错误地使用了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.