magesh
magesh

Reputation: 1

Getting Error On Xml resultSet in java

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

Answers (1)

trashgod
trashgod

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

Related Questions