Subject some IBX method
Author james_027
The time when Iam using IBX this method is very useful for me ...

for example I have add or edit to table1, I could just put these
following lines ...

table1.post;
table1.transaction.commitretainning;

this could just commit the changes you've made with table1 not
affecting other tables

but in IBO what I did is like this
table1.post;
maintransaction.commitretainning;

but this could commit everything. Is there something like what I show
in IBO. Iam to lazy to create another transaction for this table hehe
=).

thanks in advance.