• 查询语言.forUpdate
    • 函数原型
    • 用法如下

    查询语言.forUpdate

    函数原型

    1. public function forUpdate($bFlag = true);

    用法如下

    1. # SELECT `test`.* FROM `test` FOR UPDATE
    2. Db::table('test')->
    3. forUpdate()->
    4. getAll();

    Or

    1. # SELECT `test`.* FROM `test`
    2. Db::table('test')->
    3. forUpdate()->
    4. forUpdate(false)->
    5. getAll();