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?
|
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? | ||||
|
feedback
|
|
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. | |||
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. | |||
|
feedback
|