00001 <?php
00002
00003
00004
00005
00006
00007
00008 abstract class DBQueryLimited extends DBQuery {
00009
00010
00011
00012
00013
00014 protected $limit = array(0, 0);
00015
00016
00017
00018
00019
00020
00021
00022 public function set_limit($start_or_count, $count = null) {
00023 if ($count) {
00024 $this->limit = array($start_or_count, $count);
00025 }
00026 else {
00027 $this->limit = array(0, $start_or_count);
00028 }
00029 }
00030
00031
00032
00033
00034
00035
00036 public function get_limit() {
00037 return $this->limit;
00038 }
00039 }