135
XQuery current-date() Function
The XQuery current date function is used to retrieve the current date.
XQuery current-date() Example
Use the following XQuery expression to fetch the current date.
current-date.xqy:
Create a Java based XQuery executor program to read the current-date.xqy, passes it to the XQuery expression processor, and executes the expression. After that the result will be displayed.
XQueryTester.java
Execute XQuery against XML
Put the above both files to a same location. We put them on desktop in a folder name XQuery10. Compile XQueryTester.java using console. You must have JDK 1.5 or later installed on your computer and classpaths are configured.
Compile:
javac XQueryTester.java
Execute:
java XQueryTester
Output:
Here, +5:30 specifies the relative GMT time of the server.
Next TopicXQuery current-time() Function