I wanted to insert data from a XML file to a database with Java. This includes creating table, followed by inserting data in that from the XML file.
|
|
I'm not going to supply you with the code to do it, but give you the direction: There are two parts to your task:
|
|||||
|
|
If this is a one time operation and/or you have LOTS of data, then you could consider bypassing the DB communication in Java (ala JDBC), and instead, you could stream the output to plain-text SQL script(s) containing valid (insert) SQL statements. Once you have the SQL script(s), then you could simply access your DB locally (via the command-prompt/line) and import your newly created SQL script(s). To parse the XML, please refer to the URL provided by MByD in his point #1. |
|||
|
|
|
I did this some years ago - without the part that creates the tables. It takes an XML in this format: http://pastebin.com/SzcJnZFv and parses it using this code: http://pastebin.com/09T8sqd4 The format used is the same as used in the products by 'sqlmanager.net' - but my code can be used for larger datasets as it does not use a DOM. HTH |
|||
|
|
|
I'm not going to supply you with the code to do it, but give you the direction: If this is a one time operation and/or you have LOTS of data, then you could consider bypassing the DB communication in Java (ala JDBC), and instead, you could stream the output to plain-text SQL script(s) containing valid (insert) SQL statements. Once you have the SQL script(s), then you could simply access your DB locally (via the command-prompt/line) and import your newly created SQL script(s). To parse the XML, please refer to the URL provided by MByD in his point #1. |
||||
|
|