Differences between sedna xquery in windows and Linux, sedna xquery

Source: Internet
Author: User
Tags xquery

Differences between sedna xquery in windows and Linux, sedna xquery

The source uses the example of yesterday to load book. xml into the collection named novel in the books database.

<books><book><name>The Call Of Wild</name><author>Jack London</author><price>32.5$</price><date>2015-7-6</date></book><book><name>Wuthering Heights</name><author>Emily Bronte</author><price>40$</price><date>2015-7-5</date></book></books>


Query the content:

se_term -query "for $p in collection('novel')/books return $p" books

In Windows, the result is as follows:

D:\sedna\bin>se_term -query "for $p in collection('novel')/books return $p" books<books>  <book>    <name>The Call Of Wild</name>    <author>Jack London</author>    <price>32.5$</price>    <date>2015-7-6</date>  </book>  <book>    <name>Wuthering Heights</name>    <author>Emily Bronte</author>    <price>40$</price>    <date>2015-7-5</date>  </book></books>

Results in Linux:

[xuzhina@localhost bin]$ ./se_term -query "for $p in collection('novel')/books return $p" booksSEDNA Message: ERROR XPST0003It is a static error if an expression is not a valid instance of the grammar defined in A.1 EBNF.Details: at (1:6), syntax error, unexpected in, expecting end of file or statement separator         for  in collection('novel')/books return 

If it is changed to the following in Linux:

se_term -query "for \$p in collection('novel')/books return \$p" books

The result is correct:

[xuzhina@localhost bin]$ ./se_term -query "for \$p in collection('novel')/books return \$p" books<books>  <book>    <name>The Call Of Wild</name>    <author>Jack London</author>    <price>32.5$</price>    <date>2015-7-6</date>  </book>  <book>    <name>Wuthering Heights</name>    <author>Emily Bronte</author>    <price>40$</price>    <date>2015-7-5</date>  </book></books>


Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.