%PDF- %PDF-
Direktori : /www/varak.net/losik.varak.net/vendor/dibi/dibi/examples/ |
Current File : //www/varak.net/losik.varak.net/vendor/dibi/dibi/examples/using-limit-and-offset.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