Oracle
 sql >> Base de Dados >  >> RDS >> Oracle

Como ler e armazenar dados XML no banco de dados


Para fazer uma consulta, você deve usar PreparedStatement .

Um exemplo de uso:
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();