예제 #1
0
 protected function appendLimitOffsetValues($expr, $limit, $offset)
 {
     if ($offset !== NULL && $limit === NULL) {
         $limit = -1;
     }
     parent::appendLimitOffsetValues($expr, $limit, $offset);
 }
예제 #2
0
 protected function appendLimitOffsetValues($expr, $limit, $offset)
 {
     if ($offset !== NULL && $limit === NULL) {
         //Taken from the manual
         $limit = '18446744073709551615';
     }
     parent::appendLimitOffsetValues($expr, $limit, $offset);
 }