Your approach to transactions isn't going to work in iBATIS, and
likely not any other transactional framework either.
You should be demarcating transactions at a standard level within your
application. If you wish to make this simple on yourself, you could
use Spring, or I could start a discussio
Is nested transaction supported? I have a method call within a transaction
and the method in turn starts another transaction.
Example:
try
{
startTransaction
code.
method();
commitTransaction
}
finally {
endTransaciton
}
--
public method()
{
try
{
2 matches
Mail list logo