Subversion Repositories PHPX

Compare Revisions

Last modification

Ignore whitespace Rev 73 → Rev 74

/trunk/Db/Database.php
379,6 → 379,24
}
 
/**
* Returns the date of last modification of this database or
* one of its tables.
*
* To be overridden by inheriting classes.
*
* @param string $table (optional)
* Table name. If not provided, all tables of this database
* are considered.
* @return int|null
* Timestamp of last modification, or <code>null</code> if
* unavailable.
*/
public function getLastModified ($table = null)
{
return null;
}
 
/**
* Escapes a database name so that it can be used in a query.
*
* @param string $name
481,7 → 499,6
protected function _escapeValueArray(array &$array, $suffix = '')
{
$result = array();
 
foreach ($array as $column => $value)
{
$op = '=';