Example #1
0
 /**
  * Creates a sql update object
  * @param Table $table
  * @param SetList $setList
  * @param Condition $condition
  * @param OrderList $orderBy
  * @param int $offset Limits the update to datasets beginning on offset
  * @param int $count Limits the update to this amount of datasets
  * @return Update 
  */
 function Update(Table $table, SetList $setList, Condition $condition = null, OrderList $orderBy = null, $offset = 0, $count = 0)
 {
     return parent::CreateUpdate($table, $setList, $condition, $orderBy, $offset, $count);
 }