sql >> Database >  >> RDS >> Oracle

Hoe AddBatch/withBatch correct te gebruiken voor het bulksgewijs invoegen van XML-tagwaarde in databasetabel

Je moet doen:

// 386 is an odd batch size?
sql.withBatch(386, 'insert into tab1(col1,col2) values (?, ?)') { ps ->
    innerXml.Row.each { row ->
        ps.addBatch(row.Column0.text(), row.Column1.text())
    }
}



  1. C# Geparametriseerde Query MySQL met `in` clausule

  2. Omzet berekenen in MySQL

  3. MySQL FULLTEXT werkt niet

  4. MySQL C API-bibliotheken voor iPhone