Home » XQuery current-dateTime() Function

XQuery current-dateTime() Function

by Online Tutorials Library

XQuery current-dateTime() Function

The XQuery current-date time() function is used to return the current date and time.


XQuery current-dateTime() Example

Use the following XQuery expression to fetch the current date and time.

current-datetime.xqy:

Create a Java based XQuery executor program to read the current-datetime.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 XQuery12. 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:

XQUERY Current date time function 1

The above example shows both date and time.

You may also like