Oracle
 sql >> Database >  >> RDS >> Oracle

Come leggere e memorizzare dati XML nel database

Per formare una query è necessario utilizzare PreparedStatement .

Un esempio di utilizzo:

String query = "INSERT INTO some_table (col1,col2,col3) values (?,?,?)
PreparedStatement stmt = null;
stmt = con.prepareStatement(query);
//now use the values from the xml and bind them to the statement
stmt.setString(someStringValue);
stmt.setInt(someIntValue);
...
stmt.execute();