Returns the instance of the object TimeZone passed as argument.

1 date.timezone

<date.timezone Id='Id'/>
Example

Example in which it returns the timezone of Madrid.

Copy
<xsql-script name='date_timezone_sample1'>
    <body>
    	<println><date.timezone id='Europe/Madrid' /></println>
    </body>
</xsql-script>
Example

Example in which the timezone of Barcelona returns empty.

Copy
<xsql-script name='date_timezone_sample2'>
   <body>
   	<println><date.timezone id='Europe/Barcelona' /></println>
   </body>

</xsql-script>