130131132133134135136137138139140
DbTransaction xa = _xa; _xa = null; if (xa != null) xa.commit(); } public void rollback() throws SQLException {
201202203204205206207208209210211
if (! _isAutoCommit && autoCommit) { DbTransaction xa = _xa; _xa = null; if (xa != null) xa.commit(); } _isAutoCommit = autoCommit; }
124125126127128129130131132133134
isOkay = true; } finally { if (! xa.isAutoCommit()) { } else if (isOkay) xa.commit(); else xa.rollback(); } _rs = new ResultSetImpl(this, queryContext.getResult());
204205206207208209210211212213214
isOkay = true; } finally { if (! xa.isAutoCommit()) { } else if (isOkay) xa.commit(); else xa.rollback(); } return rowUpdateCount;
501502503504505506507508509510511
log.log(Level.WARNING, e.toString(), e); } } } } finally { xa.commit(); } } /** * Rebuilds the indexes
573574575576577578579580581582583
} } finally { if (iter != null) iter.free(); xa.commit(); } } private void writeTableHeader(WriteStream os)
671672673674675676677678679680681
DbTransaction xa = _xa; _xa = null; // db/0a10 if (xa != null && xa.isAutoCommit()) xa.commit(); } public static void free(QueryContext cxt) { _freeList.free(cxt);