Queries an XML document stored in a JXML format.
query(String query, JXml jxml)
Where:
String query is the string you are searching.
JXml jxml is an object created from the classes located in $SYBASE/ASE-12_5/samples/
This example queries for authors in bookstore.Xql
JXml xDoc = new JXml("<xml>...</xml>");; String result = Xql.query("/bookstore/book/author", xDoc);
Allows you to execute a query on an JXML document using XQL.