XQuery – current-time Function

  • Post author:
  • Post category:XQuery
  • Post comments:1 Comment

The current-time function is used to return the current time.

Syntax

current-time()

Example

XQuery Expression

let $time := current-time()

return
<results>
   <time>{$time}</time>
</results>

Output

<results>
   <time>14:53:46.803+05:30</time>
</results>

Verify the Result

In order to test the above-mentioned functionality, replace the contents of books.xqy (mentioned in Environment Setup cchapter) with the above XQuery expression and execute the XQueryTester java program to verify the result.

This Post Has One Comment

Leave a Reply