Isolation Level

Stimulsoft Reports.NET discussion
Post Reply
joro
Posts: 63
Joined: Wed Jan 27, 2010 7:35 am

Isolation Level

Post by joro »

Hello,

can you please tell me what Isolation Level Stimulsoft uses when reading form the database?
Can we change the Isolation Level for a single report?

joro
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Re: Isolation Level

Post by Alex K. »

Hello,

We do not set any specific isolation levels.
You can set necessary level in the query:

Code: Select all

SET TRANSACTION ISOLATION LEVEL REPEATABLE READ;  
BEGIN TRANSACTION;  
select * from Categories
COMMIT TRANSACTION; 
Thank you.
Post Reply