Thread: xml and postgresql
Hi folks, I need to load xml data in to database can you tell me they way how do I import xml data into postgresql database. lets dat this is the xml file <bookstore> |
aravind chandu wrote: <blockquote cite="mid:152688.69120.qm@web31408.mail.mud.yahoo.com" type="cite"><table border="0" cellpadding="0"cellspacing="0"><tbody><tr><td style="font-family: inherit; font-style: inherit; font-variant: inherit; font-weight:inherit; font-size: inherit; line-height: inherit; font-size-adjust: inherit; font-stretch: inherit;" valign="top">Hifolks,<br /><br /> I need to load xml data in to database can you tell me they way how do I importxml data into postgresql database.<br /><br /> lets dat this is the xml file<br /><br /><pre><bookstore> <book category="CHILDREN"> <title>Harry Potter</title> <author>J K. Rowling</author> <year>2005</year> <price>29.99</price> </book> <book category="WEB"> <title>Learning XML</title> <author>Erik T. Ray</author> <year>2003</year> <price>39.95</price> </book> </bookstore> so finally the table name should be bookstore and column names are category,title, author,year,price and all the information in the xml file should be ported to the table can you please tell me how to do this its a bit confusing to me as i am just a beginner to this. Thanks in advance, Aravind. </pre><br /><br /></td></tr></tbody></table><br /></blockquote> I have written a python program that may helpyou.<br /><br /> It is part of a larger project I hope to post in a few days. <br /><br /> Or I could sent it to you.<br/><br /> Gwyneth<br />
On Fri, Jul 4, 2008 at 11:01 AM, Gwyneth Morrison <gwynethm@toadware.ca> wrote:
--
William Leite Araújo
Pai 0.6 beta 2.1 "Dizem que agora melhora..."
aravind chandu wrote:
Hi folks,
I need to load xml data in to database can you tell me they way how do I import xml data into postgresql database.
lets dat this is the xml file<bookstore> <book category="CHILDREN">
Why "category" is not a Element of book, as all others? Is it a column of table "bookstore"?
I have written a python program that may help you.
<title>Harry Potter</title> <author>J K. Rowling</author> <year>2005</year> <price>29.99</price> </book> <book category="WEB"> <title>Learning XML</title> <author>Erik T. Ray</author> <year>2003</year> <price>39.95</price> </book> </bookstore> so finally the table name should be bookstore and column names are category,title, author,year,price and all the information in the xml file should be ported to the table can you please tell me how to do this its a bit confusing to me as i am just a beginner to this. Thanks in advance, Aravind.
It is part of a larger project I hope to post in a few days.
Or I could sent it to you.
Gwyneth
--
William Leite Araújo
Pai 0.6 beta 2.1 "Dizem que agora melhora..."