[
Lists Home |
Date Index |
Thread Index
]
Can you point me to the text in any of the working drafts that says that an implementation should infer types for data and strip out unrelated information? The only time your statement is true is if <Weight> typed as a schema type and thus was converted from a PSVI to the XQuery data model. In this case since the PSVI doesn't mandate retaining comments and it may be costly for implementations to store both the typed value and the untyped node structure then the data loss you describe may occur. However I don't see how different this is from the XPath 1.0 query
number(/A)
giving me
12
for the XML
<A>01<!-- comment may be lost -->2</A>
So really what has changed? If you want to deal with untyped data then don't use schema types. You can't have your cake and eat it too.
-----Original Message-----
From: David Carlisle [mailto:davidc@nag.co.uk]
Sent: Wed 12/4/2002 5:03 PM
To: jonathan.robie@datadirect-technologies.com
Cc: xml-dev@lists.xml.org
Subject: Re: [xml-dev] bohemians, gentry
> 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.
-----------------------------------------------------------------
The xml-dev list is sponsored by XML.org <http://www.xml.org>, an
initiative of OASIS <http://www.oasis-open.org>
The list archives are at http://lists.xml.org/archives/xml-dev/
To subscribe or unsubscribe from this list use the subscription
manager: <http://lists.xml.org/ob/adm.pl>
|