Example #1
0
 /**
  * Set the limit
  *
  * @param  string    $keys
  * @param  string    $as
  * @return \Kanso\Database\Query\Builder
  */
 public function LIMIT($offset, $value = null)
 {
     $this->Query->limit($offset, $value);
     return $this;
 }