コード例 #1
0
ファイル: SelectQuery.php プロジェクト: krajewskis/ppdo
 public function offset($offset)
 {
     $this->selectBuilder->offset($offset);
     return $this;
 }
コード例 #2
0
ファイル: SelectBuilderTest.php プロジェクト: krajewskis/ppdo
 public function testOffset()
 {
     $query = $this->selectBuilder->offset(100)->build();
     $this->assertEquals('SELECT * FROM test OFFSET 100', $query);
 }