====== $lockMode ======
~~NOTOC~~
^Type|String|
^Default|' for update '|
===== Description =====
Setting the value of this class variable adds the value to SELECT statements executed by [[v5:activerecord:load]]. This value is the default for MySQL databases, but may need to be changed for others.
===== Usage =====
In this example we want to ''load()'' from an Oracle database with the opportunity of locking the records
class person extends ADOdb_Active_Record
{
public $lockMode = ' FOR UPDATE NOWAIT';
}