zorba [options] [-q Inline_Query ...] or
zorba [options] -f [-q Query_File ...]
Available options:
--timing, -t
Print timing information. In case of multiple queries the timing information is provided per each query. Both wallclock time and user time (which excludes I/O, network delays and other kernel waits) are shown.
--output-file, -o
Write the result to the given file.
--serialization-parameter, -z
Set serialization parameter in the form of a parameter=value pair (see http://www.w3.org/TR/xslt-xquery-serialization/#serparam, e.g.: -z method=xhtml -z doctype-system=DTD/xhtml1-strict.dtd -z indent=yes).
--serialize-html
Serialize the result as HTML.
--serialize-text
Serialize the result as Text.
--indent, -i
Indent output.
--print-query
Print the queries.
--print-errors-as-xml, -x
Print the errors as XML.
--byte-order-mark
Set the byte-order-mark for the serializer.
--omit-xml-declaration, -r
Omit the XML declaration from the result.
--base-uri
Set the base URI property of the static context.
--boundary-space
Set the boundary-space policy ('strip' or 'preserve') in the static context.
--default-collation
Add the given collation and set the value of the default collation in the static context to the given collation.
--construction-mode
Set the construction mode ('strip' or 'preserve') in the static context.
--ordering-mode
Set the ordering mode ('ordered' or 'unordered') in the static context.
--multiple, -m
Execute the given queries multiple times.
--query, -q
Query test or file URI (file://...)
--as-files, -f
Treat all -q arguments as file paths instead of URIs or inline queries.
--external-variable, -e
Provide the value for a variable given a file (name=file) or a value (name:=value)
--context-item
Set the context item to the XML document in a given file.
--optimization-level
Optimization level for the query compiler (O0, O1 or O2 - default: O1)
--lib-module, -l
Query compiler option to treat the query as a library module. If this is set --compile-only option is also set to true.
--parse-only
Stop after parsing the query.
--compile-only
Only compile (don't execute)
--no-serializer
Do not serialize (discard) result.
--debug, -d
Launch the Zorba debugger server and connect to a DBGP-enabled debugger client.
--debug-host, -p
The host where the DBGP-enabled debugger client listens for connections. Defaults to: 127.0.0.1
--debug-port, -p
The port on which the DBGP-enabled debugger client listens for connections. Defaults to: 28028
--no-logo
Print no logo when starting.
--timeout
Specify a timeout in seconds. After the specified time, the execution of the query will be aborted.
--uri-path
URI path (list of directories) added to the built-in URI resolver, i.e. where to find modules/schemas to import.
--lib-path
Library path (list of directories) where Zorba will look for dynamic libraries (e.g., module external function implementations.
--module-path
Path (list of directories) to add to both the URI and Library paths.
--option
Set an XQuery option in the static context. The QName of the option is passed as a string in the notation by James Clark (i.e. {namespace}localname). For example, --option {http://www.zorba-xquery.com}option=value
--trailing-nl
Output a trailing newline after the result of the query.
--stop-words
Mapping specifying a stop-words URI to another.
--thesaurus
Mapping specifying a thesaurus URI to another.
--compile, -c
Output the query plan as binary.
--execute-plan, -e
Execute a binary query plan. Binary query plans can be generated using the --compile-plan option.
This example shows the use of -t, –print-query output options and -i execute option.
Zorba command:
zorba -t --print-query -q "1+1" -q "fn:concat('un', 'grateful')" -q "fn:matches('abracadabra', '^a.*a$')"
Output:
Query number 1 :
1+1
<?xml version="1.0" encoding="UTF-8"?>
2
Number of executions = 1
Engine Startup Time : 36.205 (user: 35.949) milliseconds
Average Compilation Time: 3.035 (user: 3.011) milliseconds
Average Execution Time : 0.154 (user: 0.148) milliseconds
Average Loading Time : 0.000 (user: 0.000) milliseconds
Average Unloading Time : 23.080 (user: 9.798) milliseconds
Average Total Time : 31.791 (user: 18.433) milliseconds
Query number 2 :
fn:concat('un', 'grateful')
<?xml version="1.0" encoding="UTF-8"?>
ungrateful
Number of executions = 1
Engine Startup Time : 36.205 (user: 35.949) milliseconds
Average Compilation Time: 3.971 (user: 3.932) milliseconds
Average Execution Time : 0.217 (user: 0.212) milliseconds
Average Loading Time : 0.000 (user: 0.000) milliseconds
Average Unloading Time : 27.641 (user: 14.319) milliseconds
Average Total Time : 37.364 (user: 23.946) milliseconds
Query number 3 :
fn:matches('abracadabra', '^a.*a$')
<?xml version="1.0" encoding="UTF-8"?>
true
Number of executions = 1
Engine Startup Time : 36.205 (user: 35.949) milliseconds
Average Compilation Time: 93.269 (user: 11.609) milliseconds
Average Execution Time : 0.396 (user: 0.375) milliseconds
Average Loading Time : 0.000 (user: 0.000) milliseconds
Average Unloading Time : 32.478 (user: 19.128) milliseconds
Average Total Time : 131.699 (user: 36.610) milliseconds
Engine Shutdown Time : 0.007 (user: 0.007) milliseconds
The purpose of this example is to demonstrate the use of -f and -e execute options.
These are the files used in this example and their meaning:
works-mod.xml | File that will be used as external variable. |
comandline_doc_example_2.xq | This is an update query. For details please see below. |
comandline_doc_example_2-test.xq | Query used to see the results of the update query. For details please see below. |
works-mod.xml :
comandline_doc_example_2.xq :
comandline_doc_example_2-test.xq :
Zorba command:
zorba -e input-context=works-mod.xml -f -q comandline_doc_example_2.xq -q comandline_doc_example_2-test.xq
Note: Make sure you give the correct path to the works-mod.xml, comandline_doc_example_2.xq and comandline_doc_example_2-test.xq files.
Expected result: