Re: How to change Transaction Isolation Level
- From: Ralf Jansen <Ralf.Jansen@xxxxxxxxxxxxxxxx>
- Date: Thu, 06 Jul 2006 20:59:19 +0200
What Database?
Anyway ADOConnection has an IsolationLevel property.
ADOConnection1.IsolationLevel := ilReadUncommitted;
Should work but in some environments (COM+ for example) IsolationLevel can't be changed that easily.
In that case and if your DB is SQL SERVER you could try tablehints to allow dirty reads.
Example:
Select t1.c2 from t1 WITH (NOLOCK)
Ralf
.
- References:
- How to change Transaction Isolation Level
- From: Ivan Slavev
- How to change Transaction Isolation Level
- Prev by Date: Master-Detail using disconnected recordset
- Next by Date: Re: ADO Data type mismatch
- Previous by thread: How to change Transaction Isolation Level
- Next by thread: ADO Data type mismatch
- Index(es):