Example #1
0
 /**
  * Creates a delete statement
  * @return Delete 
  */
 function Delete(Table $table, Condition $condition = null, OrderList $orderList = null, $offset = 0, $count = 0)
 {
     return parent::CreateDelete($table, $condition, $orderList, $offset, $count);
 }