Skip to Content
0
Former Member
Sep 10, 2010 at 02:45 PM

JDBC commit order

36 Views

Hello, sdners! I have a doubt about JDBC Adapter. If I have an insert statement like following, how many commits will be executed? 1, 2 or 3? And when will it be executed?

<StatementName2>

<dbTableName action=u201DINSERTu201D>

<table>realDbTableName</table>

<access>

<col1>val1</col1>

<col2>val2</col2>

</access>

<access>

<col1>val11</col1>

</access>

</dbTableName>

</StatementName2>

<StatementName2>

<dbTableName action=u201DINSERTu201D>

<table>realDbTableName</table>

<access>

<col1>val1</col1>

<col2>val2</col2>

</access>

</dbTableName>

</StatementName2>

Thanks in advance!

Regards

Federico