Hi,
I would like to know if the JDBC adpater respect the order of the description data type to process statements.
for instance if I have a structurte like:
<root>
<Statement1>
<dbTableName action='DELETE>
<table>MY_TABLE</table>
<key1>
<col1>val1old</col1>
<col2>val2</col2>
</key1>
</dbTableName>
</Statement1>
<Statement2>
<dbTableName action='INSERT'>
<table>MY_TABLE</table>
<access>
<col1>val1</col1>
<col2>val2</col2>
</access>
</dbTableName>
</Statement2>
</root>
The Statement1 will be always process before Statement2 ? because in this case it's important for me to delete before the insert.
Thanks in advance for your answer,
Antoine.