views:

209

answers:

1

I have an oledb-connection from clickview to a sql2005-server and I would like this connection to use transaction isolation level of read uncommitted. My seconde choice would be to set it on the user. How can I accomplish this?

A: 

http://msdn.microsoft.com/en-us/library/ms709786%28VS.85%29.aspx

When you starts transaction by ITransactionLocal::StartTransaction you explicitly need specify isolation level.

Dewfy