[basex-talk] Out Of Main Memory error while creating BaseX DB

2013-10-23 Thread elangovan MuthuSwamy
Hi All, I am using BaseX to evaluate Xpaths (Xqueries) for larger size of XML files. I have created BaseX database initially using *CreateDB*.execute(ctx) API. And every time when I need to evaluate Xpath I open database using Open("database name") API and get a context. Using this context I eval

Re: [basex-talk] How to get list as result instead of a String

2013-04-11 Thread elangovan MuthuSwamy
ing options? > > HTH, > Alex > > [1] http://docs.basex.org/wiki/Options > > On 08.04.2013, at 09:07, elangovan MuthuSwamy > wrote: > > > Thanks Alex, > > > > Where can I change the serialization parameters? > > > > I have set SERI

[basex-talk] How to get list as result instead of a String

2013-04-04 Thread elangovan MuthuSwamy
Hi All, I am using XQuery to evaluate an xpath. My code is as follows, /*Example xml I am using intf0 intf1 intf2 intf3 */ XQuery query = new XQuery("/interfaces/interface/name/text()"); String str = query.execute(ctx); // Result string is - intf0intf1intf2intf3 I want the resul

Re: [basex-talk] BaseX-Talk Digest, Vol 38, Issue 33

2013-02-20 Thread elangovan MuthuSwamy
Hi All, There was a misspell in end of first para. I could get the results within 5 milliseconds using SAX parser misspelled as 5 seconds. Sorry for the inconvenience caused. Thanks, Elango. > Hi All, > > I am trying to use BaseX Client and server with large XML files(13 MB > size). I have cre

[basex-talk] BaseX xpath querying takes more time than SAX parser takes

2013-02-20 Thread elangovan MuthuSwamy
Hi All, I am trying to use BaseX Client and server with large XML files(13 MB size). I have created a database for the XML and evaluated an xpath in that. When I executed an xpath it takes around 250 milliseconds to fetch the results. In case of SAX parser I could get the response for the same xpa