TransactionScope - Unable to get error message (6106)

  • Thread starter Thread starter BigLuzer
  • Start date Start date
B

BigLuzer

hi

using the new TransactionScope class in .NET 2.0, we occasionally get
an "Unable to get error message (6106) message" returned from .net,
after (it seems) 60 seconds.

we are connecting to Oracle 9.2.0.5 database, with the same version
client.

it happens approx 10% of the time.

has anyone else seen this?
google turned up nothing...

thanks
cj
 
sample code, using business classes:

using (TransactionScope scope = new TransactionScope())

{

decimal dec1 = SiteProvider.BusinessObject.SaveToDB();

foreach (Item i in BO.Items)

{

//save children to DB in scope

decimal dec2 = SiteProvider.BusinessObject.SaveChildToDB();

}



scope.Complete();

return dec1;

}
 
Back
Top