ultm icon indicating copy to clipboard operation
ultm copied to clipboard

Ultra Lightweight Transaction Manager for JDBC

Results 4 ultm issues
Sort by recently updated
recently updated
newest added

The `ThreadLocalTxManager` has this method: ```java @Override public T txUnwrappedResult(UnitOfWorkCall unit) throws Exception { begin(); try { T result = unit.call(); commit(); return result; } catch (Exception e) { rollback();...

bug

Hi @witoldsz! I've been playing with ultm for a while. I've noticed that when I don't want run SQL operation inside transaction I have to use different DataSource (not provided...