473,321 Members | 1,748 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,321 software developers and data experts.

xpath to sql translation

Are there any tools (java classes, tag libraries) which can translate
xpath statements into a SQL query?

Given an xpath query which has a predicate that filters node values or
attributes, I want help constructing the Where clause of a SQL
statement that will mirror the expressions and functions contained in
the predicate.

Such a tool may require an XML to DB mapping or it would need to make
assumptions about the structure of the document and the tables.

Thanks for any advice.

Terry
Jul 20 '05 #1
8 7560
Terry P wrote:
Are there any tools (java classes, tag libraries) which can translate
xpath statements into a SQL query?

Given an xpath query which has a predicate that filters node values or
attributes, I want help constructing the Where clause of a SQL
statement that will mirror the expressions and functions contained in
the predicate.

Such a tool may require an XML to DB mapping or it would need to make
assumptions about the structure of the document and the tables.

Thanks for any advice.

Terry


What sory of database are you talking about?
A ordinary relational database? Or an XML-database.
Xml-databases are new and not very fast, but there is extensive research in xml-database-system.
Those system support xpath and xquery as query languages.

I'f you want to map xpath onto sql, then your're right: you need some
rules about how xml is mapped onto the relational database.
With those rules you could map xpath expression to sql expressions.

I don't know wether they exists. I myself have my own mapping rules,
rather simplistic rules but it does the job for me.
Jul 20 '05 #2
On Wed, 01 Dec 2004 14:24:45 +0100, Tjerk Wolterink
<tj***@wolterinkwebdesign.com> wrote:
Terry P wrote:
Are there any tools (java classes, tag libraries) which can translate
xpath statements into a SQL query?

Given an xpath query which has a predicate that filters node values or
attributes, I want help constructing the Where clause of a SQL
statement that will mirror the expressions and functions contained in
the predicate.

Such a tool may require an XML to DB mapping or it would need to make
assumptions about the structure of the document and the tables.

Thanks for any advice.

Terry


What sory of database are you talking about?
A ordinary relational database? Or an XML-database.
Xml-databases are new and not very fast, but there is extensive research in xml-database-system.
Those system support xpath and xquery as query languages.

I'f you want to map xpath onto sql, then your're right: you need some
rules about how xml is mapped onto the relational database.
With those rules you could map xpath expression to sql expressions.

I don't know wether they exists. I myself have my own mapping rules,
rather simplistic rules but it does the job for me.

I was under the (mistaken?) assumption that eventually xpath will let you
query multiple data sources, i.e. databases included.

Is this true?
Jeff Kish
Jul 20 '05 #3
Jeff Kish wrote:
On Wed, 01 Dec 2004 14:24:45 +0100, Tjerk Wolterink
<tj***@wolterinkwebdesign.com> wrote:

Terry P wrote:
Are there any tools (java classes, tag libraries) which can translate
xpath statements into a SQL query?

Given an xpath query which has a predicate that filters node values or
attributes, I want help constructing the Where clause of a SQL
statement that will mirror the expressions and functions contained in
the predicate.

Such a tool may require an XML to DB mapping or it would need to make
assumptions about the structure of the document and the tables.

Thanks for any advice.

Terry


What sory of database are you talking about?
A ordinary relational database? Or an XML-database.
Xml-databases are new and not very fast, but there is extensive research in xml-database-system.
Those system support xpath and xquery as query languages.

I'f you want to map xpath onto sql, then your're right: you need some
rules about how xml is mapped onto the relational database.
With those rules you could map xpath expression to sql expressions.

I don't know wether they exists. I myself have my own mapping rules,
rather simplistic rules but it does the job for me.


I was under the (mistaken?) assumption that eventually xpath will let you
query multiple data sources, i.e. databases included.

Is this true?
Jeff Kish


XPath is a language to query xml documents, or multiple xml documents, it returns a node-set.
It cannot query ordinary relational based databases, i think.

But you can query multiple data-sources [multiple xml files, using the document() function].
And maybe in the future you can also query XML-based databases with XPath,

But xpath is a rather simple query language for xml, XQuery is much more powerfull.
Jul 20 '05 #4
But xpath is a rather simple query language for xml, XQuery is much
more powerfull.


Xquery is a superset of Xpath 2 but the extra features are mainly
related to element construction rather than querying.
David
Jul 20 '05 #5
Tjerk,
Thanks for the response.
In particular, I expect to be using a DB2 database with XML Extenders
(IBM). I may need this on different platforms - Linux, ISeries,
Win2000.

A Java/SQL solution may be best. I am hoping for something like a
Java class that can parse the XPath and create the Where clause of a
SQL query. Special SQL functions might be used to emulate the
standard XPath functions.

XPath has been around for a while, so I am surprised that I have not
been able to find "off the shelf" tools to do this.

Terry
Tjerk Wolterink <tj***@wolterinkwebdesign.com> wrote in message news:<41**********************@news.wanadoo.nl>...
Terry P wrote:
Are there any tools (java classes, tag libraries) which can translate
xpath statements into a SQL query? ....> Terry


What sory of database are you talking about?
A ordinary relational database? Or an XML-database.
Xml-databases are new and not very fast, but there is extensive research in xml-database-system.
Those system support xpath and xquery as query languages.

I'f you want to map xpath onto sql, then your're right: you need some
rules about how xml is mapped onto the relational database.
With those rules you could map xpath expression to sql expressions.

I don't know wether they exists. I myself have my own mapping rules,
rather simplistic rules but it does the job for me.

Jul 20 '05 #6
On 1 Dec 2004 18:44:50 -0800, te**********@compu-tech-inc.com (Terry P) wrote:
Tjerk,
Thanks for the response.
In particular, I expect to be using a DB2 database with XML Extenders
(IBM). I may need this on different platforms - Linux, ISeries,
Win2000.

A Java/SQL solution may be best. I am hoping for something like a
Java class that can parse the XPath and create the Where clause of a
SQL query. Special SQL functions might be used to emulate the
standard XPath functions.

XPath has been around for a while, so I am surprised that I have not
been able to find "off the shelf" tools to do this.

<snip>
If you go to http://xquery.com/ you see this blurb:

"what is xquery?"
"XQuery is a technology under development by the World Wide Web Consortium
(W3C) that's designed to query collections of XML data -- not just XML files,
but anything that can appear as XML, including relationtional databases.
XQuery has broad support from IBM, Microsoft, and Oracle as well as
application server vendors such as BEA and Software AB."

I may of misquoted, and this may be accurate or not I don't know. It is by
Jason Hunter who I believe has a good reputation in these matters.

HTH
Jeff Kish
Jul 20 '05 #7
Terry P wrote:
Tjerk,
Thanks for the response.
In particular, I expect to be using a DB2 database with XML Extenders
(IBM). I may need this on different platforms - Linux, ISeries,
Win2000.

A Java/SQL solution may be best. I am hoping for something like a
Java class that can parse the XPath and create the Where clause of a
SQL query. Special SQL functions might be used to emulate the
standard XPath functions.

XPath has been around for a while, so I am surprised that I have not
been able to find "off the shelf" tools to do this.

Terry
Tjerk Wolterink <tj***@wolterinkwebdesign.com> wrote in message news:<41**********************@news.wanadoo.nl>...
Terry P wrote:
Are there any tools (java classes, tag libraries) which can translate
xpath statements into a SQL query?
...>
Terry


What sory of database are you talking about?
A ordinary relational database? Or an XML-database.
Xml-databases are new and not very fast, but there is extensive research in xml-database-system.
Those system support xpath and xquery as query languages.

I'f you want to map xpath onto sql, then your're right: you need some
rules about how xml is mapped onto the relational database.
With those rules you could map xpath expression to sql expressions.

I don't know wether they exists. I myself have my own mapping rules,
rather simplistic rules but it does the job for me.


I've never seen an Xpath to SELECT [] FROM [] WHERE clause translation.
And it is not easy to do that,
because you have to have rules in how you store xml in a relational database.

I think that's also the reason there are no tools to do that.
So can't help you there.
Jul 20 '05 #8
Tjerk,

We have found a couple of products on IBM's Alphaworks site. One of
them uses the "DB2 XML Extenders" mapping of XML<=>SQL. The other
seems to create a default mapping based on SQL metadata.

Both of them are limited to Linux & Windows. While we may use these,
our main RDB is DB2 for ISeries. So we are still checking.

If you are curious, the links are:
http://www.alphaworks.ibm.com/tech/xtable
http://www.alphaworks.ibm.com/tech/db2uriaccess

Thanks for your help,

Terry

Tjerk Wolterink <tj***@wolterinkwebdesign.com> wrote in message news:<41***********************@news.wanadoo.nl>.. .
Terry P wrote:
Tjerk,
Thanks for the response.
In particular, I expect to be using a DB2 database with XML Extenders
(IBM). I may need this on different platforms - Linux, ISeries,
Win2000.
....
Terry

What sory of database are you talking about?
A ordinary relational database? Or an XML-database.
Xml-databases are new and not very fast, but there is extensive research in xml-database-system.
Those system support xpath and xquery as query languages.

I'f you want to map xpath onto sql, then your're right: you need some
rules about how xml is mapped onto the relational database.
With those rules you could map xpath expression to sql expressions.

I don't know wether they exists. I myself have my own mapping rules,
rather simplistic rules but it does the job for me.


I've never seen an Xpath to SELECT [] FROM [] WHERE clause translation.
And it is not easy to do that,
because you have to have rules in how you store xml in a relational database.

I think that's also the reason there are no tools to do that.
So can't help you there.

Jul 20 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: bdinmstig | last post by:
I refined my attempt a little further, and the following code does seem to work, however it has 2 major problems: 1. Very limited support for XPath features Basic paths are supported for...
0
by: gael.pegliasco | last post by:
Hi, How are you dear and nice helper :) ? I'm trying to test xpath with this simple program : import xml.dom.minidom from xml.xpath.Context import Context import xml.xpath
14
by: inquirydog | last post by:
Hi- One frusterating thing for me with xsl is that I don't know how to make xslt throw some sort of exception when a value-of path does not exist. For instance, suppose I have the following...
10
by: Phani | last post by:
Hi all, I am new to XPath. I have a doubt in it. My xml is like this: <UserInfo> <Contacts> <Name>Chris Bob</Name> </Contacts>
7
by: steve bull | last post by:
I have the following code snippet to read the colorRange attributes for the colorRangeSwatch in the xml file listed below. string expr = "/swatches/colorRangeSwatch/colorRange";...
0
by: Gramps | last post by:
Hi I am using C# and performing an XSL translation on a DOM like so XslTransform oXSL = new XslTransform(); oXSL.Load(Filename); oXMLOut=new XmlDocument()...
5
by: laks | last post by:
Hi I have the following xsl stmt. <xsl:for-each select="JOB_POSTINGS/JOB_POSTING \"> <xsl:sort select="JOB_TITLE" order="ascending"/> This works fine when I use it. But when using multiple...
5
by: Gnic | last post by:
Hi , I have an XmlDocument instance, I want to find a node in the xml, but I don't know it's path until runtime, for example <aaa> <bbb name="x"/> <aaa attr="y"> <ccc>sometext</ccc> </aaa>
3
by: SD | last post by:
Hi, How can i get all the nodes with attribute Name = "Publisher" or Name="Administrator" using XPath query and C# for this xml doc? <GetRoleCollectionFromUser...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: Vimpel783 | last post by:
Hello! Guys, I found this code on the Internet, but I need to modify it a little. It works well, the problem is this: Data is sent from only one cell, in this case B5, but it is necessary that data...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.