sqlBatchsqlBatch
Perform SQL Batch operations on a RDBMS
Home > Books > NetKernel API and Services Reference > Accessor Listing > RDBMS Accessors and Utilities > sqlBatch

Rate this page:
Really useful
Satisfactory
Not helpful
Confusing
Incorrect
Unsure
Extra comments:


Module

urn:org:ten60:netkernel:mod:db

The sqlBatch accessor is exported by the urn:org:ten60:netkernel:mod:db module. Import this module to gain access to the accessor.

Syntax

URI
active:sqlBatch

ArgumentRulesDescription
operandMandatory the <sql> query document
configurationOptional optional configuration document

Example Usage

DPML

<instr>
  <type>sqlBatch</type>
  <operand>
    <batch>
      <sql>SELECT id:=id FROM table WHERE name='Hetty';</sql>
      <sql>UPDATE table SET name='Ethan' WHERE id=@id;</sql>
    </batch>
  </operand>
  <configuration>/myconfiguration/configRDBMS.xml</configuration>
  <target>var:result</target>
</instr>

NetKernel Foundation API

req=context.createSubRequest("active:sqlBatch");
req.addArgument("operand", [resource representation, aspect, or URI] );
result=context.issueSubRequest(req);

Purpose

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&amp;password=mypassword </jdbcConnection>
  </rdbms>
</config>
For more details on the configuration see the Mod DB Guide.
© 2003-2007, 1060 Research Limited. 1060 registered trademark, NetKernel trademark of 1060 Research Limited.