I have situation like this.
Query is like this.
Select * from TABLE where ID = 1
(what a query :)
after that I change stuff in that row and INSERT it with new id.
I want to prevent other qeueries to read that first original row from query, untill I finish the read and insert. After that..go ahead.
Basicly I want select and insert to be in transaction, whit isolation level that will prevent reading only from that row until inserting is finished.
OlebdTransaction is in play because I use SQL server 6.5(oh yes you read it right, don't ask why :) I was digging through issolation levels description but can't quite understand them and find solution for my problem, so my question is what issolation level to use fo OleDbTransaction?
Hope I was clear :)
thanks.