Login Skip Navigation LinksWilsonORMapper > Forums Search
Demo Version Demo Version
Download and try for yourself a fully working demo version, including sample apps and documentation.  The only limitation is that the demo version only works inside the debugger.

PayPal Subscribe
Get It All for $50 USD:
WebPortal, ORMapper,
Source Code, All Updates
PayPal

User Login User Login
Log In
 
 
Reset Password

Wilson ORMapper Forums Wilson ORMapper Forums : Advanced Topics : Outer TransactionScope when saving a list of objects in Oracle causes error

Date Post
8/16/2006 2:32:15 PM When I use a TransactionScope against Oracle I'm running into problems.  We create a transaction scope and within it delete a set of data as well as persist a list of objects.  When the OR Mapper tries to save the list of objects the following error is thrown:

OracleConnection does not support parallel transactions


using(TransactionScope tx = new TransactionScope()) {

   // do operations that delete data

  // do operation that saves a list of items at once using PersistChanges

}

Is there a way to use TransactionScope with the mapper against Oracle in this type of scenario?