vote up 4 vote down star

Is there any framework for querying XML SQL Syntax, I seriously tire of iterating through node lists.


Or is this just wishful thinking (if not idiotic) and certainly not possible since XML isn't a relational database?

flag

75% accept rate

7 Answers

vote up 11 vote down check

XQuery and XPath... XQuery is more what you are looking for if a SQL structure is desirable.

link|flag
Cool, I've been using XPath because it's implemented in PHP's simpleXML, I guess I just missed XQuery. – Peter Turner Sep 26 '08 at 17:51
Xquery implements XPath, however it is the work of the devil. – Tarski Feb 28 at 1:24
vote up 0 vote down

XQuery is certainly the way forward. This is what is used by XML databases like eXist and MarkLogic.

In the Java world there are several solutions for running XQuery on flat files, most notably Saxon

For .NET, there is not so much available. Microsoft did have an XQuery library, although this was pulled from .NET 2 and has never resurfaced. XQSharp is a native .NET alternative, although currently only a command line version has been released.

link|flag
vote up 1 vote down

XQuery is a functional language that is closest to SQL. XPath is a notation for locating a node within the document that is used as part of XSLT and XQuery.

XML databases such as MarkLogic serve as XQuery engines for XML data, much as relational databases serve as SQL engines for relational data.

link|flag
Sql Server and Oracle support XQuery too. – tuinstoel Mar 8 at 7:54
vote up 0 vote down

SQL Server 2005 supports XML DML on it's native xml data type.

link|flag
vote up 3 vote down

http://en.wikipedia.org/wiki/Xquery

link|flag
vote up 1 vote down

You could try LINQ to XML, but it's not language agnostic.

link|flag
Nor is it in SQL I believe? – Meff Sep 26 '08 at 20:26
The LINQ part is .net, so you can use any language with a CLR compiler – chris Sep 27 '08 at 15:50
vote up 2 vote down

.Net Framework provides LINQ to do this or you can use the .Net System.Data namespace to load data from XML files.

You can even create queries that have joins among the tables, etc.

For example, System.Data.DataTable provides a ReadXml() method.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.