Added support for the "replace" database command
This commit is contained in:
@@ -292,6 +292,20 @@ class DBA
|
||||
return DI::dba()->insert($table, $param, $on_duplicate_update);
|
||||
}
|
||||
|
||||
/**
|
||||
* Replace a row of a table
|
||||
*
|
||||
* @param string|array $table Table name or array [schema => table]
|
||||
* @param array $param parameter array
|
||||
*
|
||||
* @return boolean was the insert successful?
|
||||
* @throws \Exception
|
||||
*/
|
||||
public static function replace($table, $param)
|
||||
{
|
||||
return DI::dba()->replace($table, $param);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fetch the id of the last insert command
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user