Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be 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"

Line 1: Line 1:
 
<css>
 
<css>
   .source-sql {padding:4px;border:1px solid black; background-color: white;}
+
   .source-sql {padding:1em;border:1px solid black; background-color: white;}
   .source-java5 {padding:4px;border:1px solid black; background-color: white;}
+
   .source-java5 {padding:1em;border:1px solid black; background-color: white;}
   .source-xml {padding:4px;border:1px solid black; background-color: white;}
+
   .source-xml {padding:1em;border:1px solid black; background-color: white;}
   .source-text {padding:4px;border:1px solid black; background-color: white;}
+
   .source-text {padding:1em;border:1px solid black; background-color: white;}
 
</css>
 
</css>
__NOTOC__  
+
__NOTOC__
 
== Batch SQL operations ==
 
== Batch SQL operations ==
 
Initial contribution by customer Rainer Schild: A DBWSBuilder file that looks something like:
 
Initial contribution by customer Rainer Schild: A DBWSBuilder file that looks something like:

Revision as of 10:43, 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