Pro*C/C++ 吗?支持“描述[schema.]对象”声明?
我无法在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,您不能这样做,因为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.
您不应该调用描述函数,也不应该尝试这样做。
使用信息模式视图或其他 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.