I am writing an XQuery that needs to check what version of XQuery is being run (eXist, Saxon, etc.). Is there a standard function that will return the system properties of an XQuery such as version, vendor etc?
I know there are some system specific calls such as eXist's
system:get-version()
but I am trying to find a standard function that would run on all platforms.
For example in XSLT we have:
Version:
<xsl:value-of select="system-property('xsl:version')" />
<br />
Vendor:
<xsl:value-of select="system-property('xsl:vendor')" />
<br />
Vendor URL:
<xsl:value-of select="system-property('xsl:vendor-url')" />
Are their similar functions for XQuery?
You can use the XQuery 3.0 function
function-lookup
to check the existence of implementation-specific functions to check for the processors. All XQuery 3.0 supporting processors should be able to process this.Unfortunately, I was not able to make this more elegant using Higher-Order functions, as the implementation-specific functions were executed before the function is actually called. But I am sure this could also be written more elegant.