1
0
mirror of synced 2024-12-14 07:06:04 +03:00
doctrine2/manual/docs/Database operations - Limit and offset.php

9 lines
224 B
PHP
Raw Normal View History

<code type="php">
$sess = Doctrine_Manager::getInstance()->openConnection(new PDO("dsn","username","password"));
2006-07-24 01:08:06 +04:00
// select first ten rows starting from the row 20
$sess->select("select * from user",10,20);
</code>