F
Frank
I am using SQL Server 2000 and .Net Frame Work1.1.
I have implemented the transaction based activity using the following
syntax.
gtrnSQLDB = gcnnSQLDB.BeginTransaction(IsolationLevel.ReadUncommitted)
Since I am specifying the transaction level of "ReadUncommitted" and
in-between BEGIN and ROLLBACK if I call SELECT STATEMENT from some other
application for this particular record, will it be in the queue or will it
read the uncommitted data? or to read the uncommitted data do I have to use
additional statement in the SELECT statement?
I appreciate your reply,
Frank
I have implemented the transaction based activity using the following
syntax.
gtrnSQLDB = gcnnSQLDB.BeginTransaction(IsolationLevel.ReadUncommitted)
Since I am specifying the transaction level of "ReadUncommitted" and
in-between BEGIN and ROLLBACK if I call SELECT STATEMENT from some other
application for this particular record, will it be in the queue or will it
read the uncommitted data? or to read the uncommitted data do I have to use
additional statement in the SELECT statement?
I appreciate your reply,
Frank