* @param level
* the <code>TransactionIsolactionLevel</code> to use when connecting to this
* <code>DatabaseLocation</code>
*/
public void setTransactionIsolactionLevel(TransactionIsolationLevel level) {
TransactionIsolationLevel old;
synchronized (getDataLock()) {
old = getTransactionIsolationLevel();
getData().putInt(TRANSACTION_ISOLATION_LEVEL, level.getCode());
}
if (level != old) {