[
Lists Home |
Date Index |
Thread Index
]
> As far as I can tell, XQuery and XSLT will both allow you to process data
> in this way.
No, they won't as Xquery's bias towards schema typing means that an
implementation is allowed to just use the typed value and junk the
original lexical string so if the original was
<Weight>123.456</Weight>
you might get away with it but if it's
<Weight>0<!--I added this leading 0 for a reason-->123.4560</Weight>
a query processor is allowed to report that as
<Weight>123.456</Weight>
and information is lost. It is lost because Xquery views the stated
typing as more important than the XML markup. It is essentially not an
XML processing language at all; it is language for querying typed trees.
David
_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.
|