how to restore an xml file into database [message #175923] |
Tue, 06 June 2006 02:03 |
ksrk
Messages: 6 Registered: June 2006
|
Junior Member |
|
|
Hello Techies,
I want to restore an xml file and save it to database. The xml file has to be restored in different tables of a database.
Here is my xml file
<Application>
<row>
<application>4</application>
<applicationName>CLIENTDEMO</applicationName>
<description/>
</row>
</Application>
<Emp>
<row>
<empno>4</empno>
<empName>CLIENTDEMO</empName>
</row>
</Emp>
First xml block i want to store in application table and Second xml block i want to store it in emp table.
How can i do this in java??
regards,
Krish
|
|
|