// INSERT_IDENTITY need to be enabled/disabled inside the
// same transaction
if (jdbcConnection.getAutoCommit() == false)
{
throw new ExclusiveTransactionException();
}
jdbcConnection.setAutoCommit(false);
// Execute decorated operation one table at a time
ITableIterator iterator = dataSet.iterator();