Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/Development/DBWS/SQLBatchOperations"

(batch SQL operations)
(Batch SQL operations)
Line 1: Line 1:
 
== Batch SQL operations ==
 
== Batch SQL operations ==
 +
Initial contribution by customer Rainer Schild: A DBWSBuilder file that looks something like:
 +
 +
<source lang="xml">
 +
<batch-sql name="get_analyzed_traces">
 +
  <batch-text>
 +
    <text><![CDATA[an INSERT statement]]></text>
 +
    <text><![CDATA[another INSERT statement]]></text>
 +
  </batch-text>
 +
</batch-sql>
 +
</source>

Revision as of 09:27, 7 October 2010

Batch SQL operations

Initial contribution by customer Rainer Schild: A DBWSBuilder file that looks something like:

<batch-sql name="get_analyzed_traces">
  <batch-text>
    <text><![CDATA[an INSERT statement]]></text>
    <text><![CDATA[another INSERT statement]]></text>
  </batch-text>
</batch-sql>

Back to the top