TransactionScope - Unable to get error message (6106)

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
 
B

BigLuzer

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;

}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top