F
Frank
I am using SQL Server 2000 and .NetFramework 1.1.
Here is my transaction based database implementation
gtrnSQLDB = gcnnSQLDB.BeginTransaction(IsolationLevel.ReadUncommitted)
Since I am saying ReadUncommited, If any other application tries to access
the data in-between BEGIN and COMMIT. Will it be allowed to read the data?
or will it be in queue so that only when the lock is released by other
application will be read?
Thanks,
Frank
Here is my transaction based database implementation
gtrnSQLDB = gcnnSQLDB.BeginTransaction(IsolationLevel.ReadUncommitted)
Since I am saying ReadUncommited, If any other application tries to access
the data in-between BEGIN and COMMIT. Will it be allowed to read the data?
or will it be in queue so that only when the lock is released by other
application will be read?
Thanks,
Frank