472,334 Members | 1,468 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,334 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 7461
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...
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...
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...
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 ...
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...
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...
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...
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? ...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: CD Tom | last post by:
This happens in runtime 2013 and 2016. When a report is run and then closed a toolbar shows up and the only way to get it to go away is to right...
0
jalbright99669
by: jalbright99669 | last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...

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.