Re: Question about nested transactions.

2005-03-24 Thread Clinton Begin
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

Question about nested transactions.

2005-03-24 Thread Narasimha Prasad
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 {