是否可以从 Oracle OCI 库检索原始查询?

发布于 2024-09-08 01:48:51 字数 303 浏览 6 评论 0原文

我希望从 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 技术交流群。

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

发布评论

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

评论(1

り繁华旳梦境 2024-09-15 01:48:51

很抱歉要揭开这个旧线程,但是为什么可以使用 oracle v$sql 来检索最近运行的查询?

SELECT *
FROM gv$sql;

Sorry to unburry this old thread, but why can use the oracle v$sql to retrieve recently running queries?

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