Page 1 of 1

Isolation Level

Posted: Fri Dec 29, 2017 6:57 am
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

Re: Isolation Level

Posted: Fri Dec 29, 2017 8:55 am
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.