Click to See Complete Forum and Search --> : xml+database= sql or ms-access


magi
03-25-2000, 11:34 AM
How to access / enter new data from xml to database using java or javascript?
where to find complete tutorials?do reply to sharvam@eth.net

Craig Clearman
03-27-2000, 11:23 AM
sharvam,

>How to access / enter new data from xml to database using java or javascript?
>where to find complete tutorials?

Get an XML parser. The best one on the market, IMO, is IBM's. Go to
http://www.alphaworks.ibm.com/ and you can download its validating
parser (currently at version 3.0.1). It will give you a package called
com.ibm.xml.parser, which has the full DOM model.

Once you have an XML parser, parse the XML and stuff the data into
your database, using JDBC.

Ciao, Craig