API17

JDatabase::updateObject

From Joomla! Documentation

The "API17" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

Joomla 11.1 JDatabase::updateObject[edit]

Description[edit]

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[edit]


User contributed notes[edit]

Code Examples[edit]