Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Jdbc PreparedStatement doesn't support parsing
When will Oracle ever support JDBC properly?
If I try this:
prepstat = conn.prepareStatement(sqltext);
meta = prepstat.getMetaData();
I get an ORA-01003 (no statement parsed) error.
This works well with other JDBC drivers, and is a very important
feature if you are trying to find out what types of data your execution
would emit without actually having to execute on a mega-row table to
find out. Like for example if you have complex expressions and want to
preview if a union is possible. Geez, Oracle.
Received on Sun Feb 20 2005 - 18:47:59 CST