是否可以从 Oracle OCI 库检索原始查询?
我希望从 Oracle 语句中检索原始查询字节并将它们直接复制到 POD C 结构中。其原因是遗留代码必须从 Informix 移植到使用 Oracle。我将在下面说明我基本上需要什么。我一直在研究使用 Oracle 模板库 (OTL),但到目前为止我一直无法找到直接从流中检索底层字节数据的方法。
问题是我想从同一个函数调用发出多个具有不同列输出的 SELECT 查询(这是 Informix 的当前操作模式)。
int query( char* inputQueryBuf, char* outputQueryBuf);
I am looking to retrieve the raw query bytes from an Oracle statement and copy them directly into a POD C structure. The reason for this is due to legacy code that must be ported to using Oracle from Informix. I'll illustrate what I basically need below. I have been looking into using the Oracle Template Library (OTL) but I have been unable to thus far find a way to retrieve the underlying byte data directly from the stream.
The problem is that I want to issue several SELECT queries, with varying column outputs, from the same function call (this is the current mode of operation for Informix).
int query( char* inputQueryBuf, char* outputQueryBuf);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很抱歉要揭开这个旧线程,但是为什么可以使用 oracle
v$sql
来检索最近运行的查询?Sorry to unburry this old thread, but why can use the oracle
v$sql
to retrieve recently running queries?