[XQuery Talk Mailing List Archive Home] [By Date] [By Thread] [By Subject] [By Author] [Recent Entries] [Reply To This Message]

Re: The State of Native XML databases

Andrew Welch andrew.j.welch at gmail.com
Tue Aug 21 12:38:19 PDT 2007


  Re: The State of Native XML databases
On 8/21/07, John Snelson <http://x-query.com/mailman/listinfo/talk> wrote:
> Andrew Welch wrote:
> > Isn't the difference that one _looks like_ a date, but the other _is_
> > an xs:date.
>
> What _is_ an xs:date?

Something you can perform operations on using functions that expect an xs:date.

For example, in XSLT given two dates:

<xsl:variable name="today" select="xs:date('2007-08-21')"/>
<xsl:variable name="yesterday" select="xs:date('2007-08-20')"/>

You can get the duration between the two by subtracting one from the other:

<xsl:value-of select="$today - $yesterday"/>

which returns "P1D".

You can't do:

'2007-08-21' - '2007-08-20'

as that's just operations on Strings even though they look like dates
and may well have come from <date> elements.

Obviously you can convert those Strings to xs:dates, but why do it
every time the date value is read - surely if its possible to store
the typed value its a good thing?

Just an observation...

-- 
http://andrewjwelch.com


Purchase Stylus Studio Online Today!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2007 All Rights Reserved.