| Pacote | flash.data |
| Classe | public class SQLTransactionLockType |
| Herança | SQLTransactionLockType Object |
option parameter of the SQLConnection.begin() method.
Veja também
| Constante | Definido por | ||
|---|---|---|---|
| DEFERRED : String = "deferred" [static]
Specifies the deferred locking transaction option.
| SQLTransactionLockType | ||
| EXCLUSIVE : String = "exclusive" [static]
Specifies the exclusive locking transaction option.
| SQLTransactionLockType | ||
| IMMEDIATE : String = "immediate" [static]
Specifies the immediate locking transaction option.
| SQLTransactionLockType | ||
| DEFERRED | Constante |
public static const DEFERRED:String = "deferred"
Specifies the deferred locking transaction option. A deferred-lock transaction does not acquire a lock on the database until the database is first accessed. With a deferred transaction, a lock is not acquired until the first read or write operation.
Veja também
| EXCLUSIVE | Constante |
public static const EXCLUSIVE:String = "exclusive"
Specifies the exclusive locking transaction option. An exclusive-locked transaction acquires a lock on the database immediately. Other SQLStatement objects executing against the same database through a different SQLConnection (in the same AIR application or a different one) can't read data from or write data to the database.
Veja também
| IMMEDIATE | Constante |
public static const IMMEDIATE:String = "immediate"
Specifies the immediate locking transaction option. An immediate-locked transaction acquires a lock on the database immediately. SQLStatement objects executing against the same database through a different SQLConnection (in the same AIR application or a different one) can read data from the database but can't write data to it.
Veja também