Trisha Shetty (Editor)

Zorba (XQuery processor)

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

Zorba is an open source query processor written in C++, implementing

Contents

  • several W3C XQuery and XML specifications and
  • the JSONiq language for processing JSON data.
  • Zorba is distributed under Apache License, Version 2.0. The project is mainly supported by the FLWOR Foundation, Oracle, and 28msec.

    Specifications

    Zorba provides the implementation of the following W3C specifications:

  • XQuery 1.0
  • XQuery 3.0
  • XQuery Update Facility 1.0
  • XQuery and XPath Full Text 1.0
  • XML Syntax for XQuery 1.0
  • XML Schema
  • XSL Transformations (XSLT)
  • XSL Formatting Objects
  • Zorba also provides implementations of:

  • JSONiq
  • Scripting Extension
  • #Data_Definition_Facility Data Definition Facility
  • Scripting

    Scripting Extension is an open specification that provides semantic for side-effects in XQuery or JSONiq programs. It also provides a user-friendly syntax for imperative programming within such programs. The following code snippet is an example of the Scripting syntax. It computes a sequence containing all the Fibonacci numbers that are less than 100.

    The following is an example of CRUD operations using Scripting, XQuery, and XQuery Update.

    Data Definition Facility

    Data Definition Facility provides a semantic for persistent artifacts such as collections and indexes in XQuery or JSONiq programs. For instance, the following code snippets declares a collection named entries and an index on that collection named entry.

    Storage

    Zorba provides a pluggable store so it can be used on different kind of environments: disk, database, browser. By default, Zorba is built with a main memory store. 28msec implements a store on top of MongoDB. The XQuery in the Browser project has built a browser plugin for Zorba and leverages the DOM as its store.

    APIs

    Zorba is usable through different host languages: C++, C, XQJ / Java, PHP, Python, C#, Ruby, and even XQuery/JSONiq.

    Zorba is also available as a command-line tool.

    XQDT is an XQuery plugin for the Eclipse (IDE). It fully supports Zorba API and syntax.

    Modules

    Zorba provides more than 70 XQuery modules for building applications. Some of these modules are:

  • File system, Email, HTTP client, OAuth client
  • XQuery and JSONiq Data Model Processing: typing, atomic items, and nodes.
  • Full-text: tokenizer, stemmer, thesaurus lookup.
  • Data Cleaning: phonetic similarities, set similarities, conversions.
  • Data Conversion: Base64, CSV, HTML, JSON, XML
  • Data Formatting: XSL-FO
  • Introspection and Reflection
  • Cryptography
  • Image processing
  • References

    Zorba (XQuery processor) Wikipedia


    Similar Topics