Re: Isolation level support at the DAO framework level ...

2006-07-12 Thread Eric Tan
Hi JeffThanks for the reply.I had suspected that it would be hard to implement this for all the different frameworks.I like the idea of being able to demarcate transactions above the DAO level. For example, in the JPetStore example, within the OrderService.java, the transaction involves 2 DAOs.  pu

Re: Isolation level support at the DAO framework level ...

2006-07-10 Thread Jeff Butler
I don't know why it wasn't done in the 2.0.9 time frame, but I've been looking at it due to your JIRA ticket.  The truth is that this isn't that easy to do.  The DAO framework supports DAOs for iBATIS SqlMaps, Hibernate, Toplink, OJB, etc.  It is not so easy to set the isolation level programmatica

Isolation level support at the DAO framework level ...

2006-07-10 Thread Eric Tan
HiSince 2.0.9, the SQL Maps framework has the ability to specify isolation level per transaction, eg: sqlMap.startTransaction(Connection.TRANSACTION_REPEATABLE_READ); However, using the DAO framework, there is still no way to specify an isolation level using DaoManager.startTransaction(). Jus