Pro*C/C++ 吗?支持“描述[schema.]对象”声明?

发布于 2024-12-11 07:50:06 字数 194 浏览 0 评论 0原文

我无法在 Pro*C 代码中准备此语句。当我运行此语句时,出现此错误:

SQLERROR: ORA CODE: -900 MSG: ORA-00900: invalid SQL statement

Is there a way to exec this statements with EXEC SQL?

I can't prepare this statement in my Pro*C code. When I running this statement I get this error:

SQLERROR: ORA CODE: -900 MSG: ORA-00900: invalid SQL statement

Is there a way to exec this statement with EXEC SQL?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

乖乖 2024-12-18 07:50:06

不,您不能这样做,因为describe 是一个SQL*Plus 命令(在幕后它会查询数据字典)。

如果您需要实际描述一个表,为了以编程方式解释列和列的数据类型,您需要执行动态 SQL 方法 4。

有关详细描述,请参阅此链接:
http://download.oracle.com/docs/cd/E11882_01/appdev.112/e10825/pc_15ody.htm#i22863

希望有帮助。

No, you can't do that because describe is a SQL*Plus command (under the covers it queries the data dictionary).

If you need to actually describe a table, in order to programmatically interpret columns and datatypes of a columns, you'll need to do dynamic SQL method 4.

See this link for a good description:
http://download.oracle.com/docs/cd/E11882_01/appdev.112/e10825/pc_15ody.htm#i22863

Hope that helps.

巴黎盛开的樱花 2024-12-18 07:50:06

您不应该调用描述函数,也不应该尝试这样做。

使用信息模式视图或其他 Oracle 特定视图(例如 all_tab_columns),以便您可以将模式元数据以可使用的格式获取到您的应用程序。

You shouldn't call the describe function, or try to.

Use the information schema views or the other oracle specific views such as all_tab_columns, so you can get the schema meta data in a consumable format to your application.

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