I have an XML file with info that I would like to export into Oracle 9i database using ColdFusion. Can ColdFusion do this where it will create the table and fields and populate it with record info? Or do I need to create the Table and fields first and then use ColdFusion to export the XML into Oracle?
If possible please advise a tutorial or site I can view to do this.
Here is an example of what I need to export into my Oracle Schema:
CODE
<bookstore>
<book category="COOKING">
<title lang="en">Everyday Italian</title>
<author>Giada De Laurentiis</author>
<year>2005</year>
<price>30.00</price>
</book>
<book category="CHILDREN">
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
<book category="WEB">
<title lang="en">Learning XML</title>
<author>Erik T. Ray</author>
<year>2003</year>
<price>39.95</price>
</book>
</bookstore>