localTransaction = true;
break;
case WRITE:
case NEW_WRITE:
if (transactionDefaultReadOnly)
throw new TransactionReadOnlyException();
transaction = new ServerTransaction(this, false, ServerTransaction.PeriodicallyCommit.OFF);
transaction.beforeUpdate();
localTransaction = true;
break;
}