Method Database_Statement::set
Automatically extracted PHP DOC comment from code: END OF PHP DOC
Take an associative array and autogenerate the SET/VALUES subpart of a query
Usage example:
$objStatement->prepare("UPDATE table %s")->set(array('id'=>'my_id'));
will be transformed into "UPDATE table SET id='my_id'".
public function object set(array $arrParams)
Parameters
- array $arrParams
- Not documented yet. Please add documentation to this entry.
Add a comment