Alexei - 2008-02-27

Available at https://sourceforge.net/projects/finevayler/ as binary/source distribution as well as SVN repository.

In addition to the "call" kind of transaction, "update" kind implemented:

  BusinessObject bo=... // find in database
  BusinessObject cloned=bo.clone();
  bo.field=newValue;
  bo.field2=newValue2;
  db.transactionUpdate(bo); // or transaction.update(bo), in line with "call" kind

Alexei