FirstClassトップページ


 ヘルプの目次
このヘルプについて このヘルプについて
 
エンドユーザ向けヘルプ エンドユーザ向けヘルプ
Client Help クライアントヘルプ
Web Help Webアクセスヘルプ
ScreenReader Help スクリーンリーダ
Form フォーム
Synchronization 同期
Definitions 用語
container コンテナ
 
管理者向けヘルプ 管理者向けヘルプ
Administration サーバの管理
Internet Services インターネットサービス
Customization Tools カスタマイズツール(英語)
Administering OTSW OTSWの管理
OTSW Custodian OTSW Custodian
Using FirstClass ED FirstClass ED(英語)
 
バナー:
 
 Connection.TxnIsolation
ホーム • Customization Tools • FCAS • Language Reference • Connection.TxnIsolation
 
Purpose
Returns or assigns an integer value indicating the ODBC transaction isolation level.
The following definitions and behaviors are defined in ODBC:


Dirty Read
Transaction1 modifies a row and Transaction2 reads the modified row before Transaction1 commits the change.
If Transaction1 rolls back the change, Transaction2 will have read a row that should have never existed.
Nonrepeatable Read
Transaction1 reads a row and Transaction2 updates or deletes that row and commits this change.
If Transaction1 rereads the row, it will receive different values or discover that the row no longer exists.
Phantom
Transaction1 reads a set of rows that satisfy some search criteria. Transaction2 inserts a row that matches the search criteria.
If Transaction1 re-executes the query that reads the rows, it receives a different set of rows.

Syntax
DBConnection.Txnlsolation [= Constant]


Constant
Possible values:
SQL_TXN_READ_UNCOMMITTED
Dirty reads, nonrepeatable reads, and phantoms are possible.
SQL_TXN_READ_COMMITTED
Dirty reads are not possible. Nonrepeatable reads and phantoms are possible.
SQL_TXN_REPEATABLE_READ
Dirty reads and nonrepeatable reads are not possible. Phantoms are possible.
SQL_TXN_SERIALIZABLE
Transactions are serializable. Dirty reads, nonrepeatable reads, and phantoms are not possible.

 

Copyright(C) 2002-2012 FC Management Co. All Rights Reserved<