Database operations - Limit and offset.php 217 Bytes
Newer Older
1

hansbrix's avatar
hansbrix committed
2 3 4 5 6 7 8
<code type="php">
$sess = Doctrine_Manager::getInstance()->openConnection(new PDO("dsn","username","password"));

// select first ten rows starting from the row 20

$sess->select("select * from user",10,20);
</code>