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
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
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