The sqlBatch
accessor performs batched SQL operations on an RDBMS using a JDBC connection. The operations are provided in the operand
as a canonical <batch>
document containing one or more <sql>
elements (see DPML example above).
The result is a document providing the operation index and number of rows updated by the update.
Configuration
By default the configuration will be read from ffcpl:/etc/ConfigRDBMS.xml
. The document provides a driver and
connection URI (see example below). Alternatively,the configuration can be provided in an optional <configuration> argument - this
may be either a URI to a config document or a literal configuration document.
<config>
<rdbms>
<jdbcDriver>com.mysql.jdbc.Driver</jdbcDriver>
<jdbcConnection>
jdbc:mysql://localhost:port/mydatabase?user=myusername&password=mypassword
</jdbcConnection>
</rdbms>
</config>
For more details on the configuration see the
Mod DB Guide
.