sql - Tedious MSSQL driver, how to set transaction level to READ_COMMITTED_SNAPSHOT -
are able specify transaction isolation level of read_committed_snapshot through tedious driver? see available isolation levels here: http://tediousjs.github.io/tedious/api-connection.html#function_begintransaction
but understand snapshot option in read committed not same setting isolation level snapshot. said, i'm not seeing way of setting transaction level without appending every query comes in, i'd rather not do.
thanks in advance help!
i don't know tedious. however, in sql server read_committed_snapshot isn't transaction isolation level. read_committed_snapshot database option read_committed. need like:
set read_committed_snapshot on
and
set transaction isolation level read_committed
Comments
Post a Comment