mirror of
https://github.com/dg/dibi.git
synced 2025-02-21 09:23:57 +01:00
34 lines
672 B
PHP
34 lines
672 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
?>
|
|
<!DOCTYPE html><link rel="stylesheet" href="data/style.css">
|
|
|
|
<h1>Using Limit & Offset | Dibi</h1>
|
|
|
|
<?php
|
|
|
|
if (@!include __DIR__ . '/../vendor/autoload.php') {
|
|
die('Install packages using `composer install`');
|
|
}
|
|
|
|
|
|
$dibi = new Dibi\Connection([
|
|
'driver' => 'sqlite',
|
|
'database' => 'data/sample.s3db',
|
|
]);
|
|
|
|
|
|
// no limit
|
|
$dibi->test('SELECT * FROM [products]');
|
|
// -> SELECT * FROM [products]
|
|
|
|
|
|
// with limit = 2
|
|
$dibi->test('SELECT * FROM [products] %lmt', 2);
|
|
// -> SELECT * FROM [products] LIMIT 2
|
|
|
|
|
|
// with limit = 2, offset = 1
|
|
$dibi->test('SELECT * FROM [products] %lmt %ofs', 2, 1);
|
|
// -> SELECT * FROM [products] LIMIT 2 OFFSET 1
|