I have an xml file which was created from a mysql database with just 1 table.
<database_name>
<table_name>
<col1>row1</col1>
<col2>row1</col1>
</table_name>
<table_name>
<col1>row2</col1>
<col2>row2</col2>
</table_name>
</database_name>
I need to convert this xml file back to a mysql database. How can I do this using Java?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||||||
|
|
You could use an xml parsing library like dom4j, to parse the file, loop through the results and emit a text file that contains a list of inserts. Do you know the schema or does it need to be inferred from the data? So your resultant text file would be something like
Then you could use mysqldump to push the file into a db mysqldump -u [username] [databasename] < output.sql |
|||
|
|