private ODictionary<Object> dictionary;
private OEntityManager entityManager;
private boolean saveOnlyDirty;
public ODatabaseObjectTx(final String iURL) {
super(new ODatabaseDocumentTx(iURL));
underlying.setDatabaseOwner(this);
entityManager = OEntityManager.getEntityManagerByDatabaseURL(getURL());
saveOnlyDirty = OGlobalConfiguration.OBJECT_SAVE_ONLY_DIRTY.getValueAsBoolean();
}