API17

API17:JDatabase::updateObject

From Joomla! Documentation

Joomla 11.1 JDatabase::updateObject

Description

Updates a row in a table based on an object's properties.


public function updateObject (
        $table
        &$object
        $key
        $nulls=false
)
Parameter Type Default Description
$table
&$object object $object A reference to an object whose public properties match the table fields.
$key string The name of the primary key.
$nulls bool false True to update null fields or false to ignore them.
  • Returns bool True on success.
  • Defined on line 958 of libraries/joomla/database/database.php
  • Since Joomla 11.1

See also


User contributed notes

Code Examples