I have parsed (not sure if that is the correct terminology) a set of data into an xml string so that its something like this:
<Data>
<Books DataType = 'String' Values = 'Hello World', 'Hi'..../>
....
</Data>
However, I now want to 'INSERT' that set of data into an oracle database using SQL. Everything I looked up uses DOM or some kind of document builder that I dont want/need in my program. The closest thing I have found is CLOB.
Is there any special methods that I can use in JAVA that would help me?