I can't prepare this statement in my pc code. When I running this statement always show out "SQLERROR: ORA CODE: -900 MSG: ORA-00900: invalid SQL statement".

Can there are any way to exec this statement substitute EXEC SQL?

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

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.

link|improve this answer
Oh! I c. I have try to use JDBC and it work fine. but proc seems does not support. I'll try to use method 4 THX. – Brian Oct 20 '11 at 3:36
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.