调试/跟踪嵌入的sql
有没有办法从代码中跟踪/记录sql(不是从数据库端,而是代码认为它在做什么)?
我正在使用 Pro*C/C++:Oracle 版本 8.1.7.0.0
Is there a way to trace/log sql from the code (not from the db side, but rather what the code thinks it's doing)?
I am using Pro*C/C++: Release 8.1.7.0.0 for Oracle
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“代码认为它正在做”
代码不会思考。如果确实如此,我想知道我们是否会遇到更多或更少的问题:)
但是您可以查看SQLNet 跟踪 在 SUPPORT 级别,如果您对客户端发送到服务器(和响应)的语句而不是服务器执行的语句感兴趣(即省略由服务器上的过程执行的 SQL,而不是直接由客户端发出的 SQL)。
"the code thinks it's doing"
Code doesn't think. If it did, I wonder if we would have more or fewer problems :)
But you could look into SQLNet trace at the SUPPORT level if you are interested in what statements the client is sending to the server (and responses back) rather than the statements executed by the server (ie omitting SQL executed by a procedure on the server rather than directly issued by the client).