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
Isolation Level
Re: Isolation Level
Hello,
We do not set any specific isolation levels.
You can set necessary level in the query:
Thank you.
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;