[
Lists Home |
Date Index |
Thread Index
]
- From: Lars Marius Garshol <larsga@garshol.priv.no>
- To: xml-dev@lists.xml.org
- Date: Thu, 07 Sep 2000 16:34:53 +0200
* aelam@ms14.url.com.tw
|
| the question is:
| how to use java language to read data from xml files
| then convert the data into SQL Server as table form.
There are two main approaches:
- do it yourself, using an XML parser and code you write yourself
based on either SAX or the DOM
- get some XML - RDBMS mapping tool to do it for you
You can find free Java XML parsers from the first URL below, and a
mapping tool from the second
<URL: http://www.garshol.priv.no/download/xmltools/cat_ix.html#SC_XML >
<URL: http://www.informatik.tu-darmstadt.de/DVS1/staff/bourret/xmldbms/xmldbms.htm >
--Lars M.
|