Login
`
Templates, Tools and Utilities
|
||
Add a comment to an Icetips ArticlePlease add your comments to this article.
Please note that you must provide both a name and a valid email address in order
for us to publish your comment. Comments are moderated and are not visible until they have been approved. Spam is never approved!
Back to article list Search Articles Add Comment Printer friendly Direct link SQL Related Articles: Logout on SQL tables 2002-11-30 -- Jim Kane Newsgroups: comp.lang.clarion
Logout is essential for related table actions. I would not do that type of
thing without logout.
The degree of locking logout causes is controlled by the issolation level
for the transaction on your back end, and the code inside the
your logout.
MSSQL 6.5 and 7.0 perform locking in very different ways. Once you
understand the effects of isolation level on your back end, then you should
set the isolation level you need using prop:logoutisolationlevel or with
prop:sql. you can also set prop:isolationlevel but I like the default
value.
The equates I use in conjunction with prop:logoutIsolationLevel are:
readuncommitted equate(1)
readcommitted equate(2)
RepeatableRead equate(4)
Serializable equate(8)
Most any sql book has descriptions of these. The best book I've found with
the most extensive coverage of locking for mssql is Inside SQL Server 7.0 by
delaney. they have two chapters on locking and hints.
Jim Kane
"Cliff Campbell & Associates"
Today is November 21, 2024, 6:44 am This article has been viewed 35246 times. Google search has resulted in 47 hits on this article since January 25, 2004.
|
|