选择语言 :

 Module_OOP_ORM_Finder_DB::update

更新数据

int Module_OOP_ORM_Finder_DB::update( [ string $value = null , array $where = null ] )

参数列表

参数 类型 描述 默认值
$value string $table null
$where array $value null
返回值
  • int 作用的行数
File: ./modules/oop/orm/finder/db.class.php
public function update($value = null, $where = null)
{
    return $this->driver()->update($this->tablename(), $value, $where);
}