Re: SqlMapClient Transactions

2005-04-14 Thread Brandon Goodin
You can expose the startTransaction etc... to your service layer through your Dao interface. It will have the unfortunate side effect of exposing specifics from your Dao to your service layer. This could be defined as bad coupling. However, best practices would suggest you should be managing your t

SqlMapClient Transactions

2005-04-14 Thread sai nukala
I have a basic need of applying transactions. What are my options to implement Transactions under this scenario..   My Objects (Just to give you my an understanding): >>BaseDAO: Abstract IBatis DAO encapsulating Initialization of SqlMapClient and provides Insert/update/select methods...   >>TableD