Reputation: 1
when i try run to execute java code it displays error. which i used to get xml type resultset from oracle using flowing method in java
poxml = XMLType(rs.getOPAQUE(1));
it shows cannot find symbol --- symbol : method getOPAQUE(int)
any one can suggest any other method for retrieving the xml resulset values from oracle
Upvotes: 0
Views: 340
Reputation: 205785
You mention an execution error but describe a compiler error: cannot find symbol
. Be sure you import oracle.xdb.XMLType;
and include the actual text of the errors you get. Also, compare what your doing to the XMLType examples in the XML DB Developer's Guide.
Upvotes: 1