显示 oci_parse 语句
有没有办法显示刚刚被 ociparse 的 SQL 语句(带或不带绑定变量)?我维护一个遗留应用程序,有时 SQL 是从许多不同的地方构建的,并且之间有很多条件。我最好做一个 print_r($handle) 但当然这是行不通的。
Is there a way to show the SQL statement that has just been ociparse'd (with or without bound variables)? I maintain a legacy application and sometimes the SQL is built from many different places and lots of conditionals in between. I'd preferably do a print_r($handle) but of course that doesn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短的回答,不。
没有简单的方法可以通过本机函数调试已解析的查询。
您需要创建自己的包装器
Short answer, no.
There is no simple way for debug a parsed query via native function.
You need to create your own wrapper