2006-07-24 01:08:06 +04:00
|
|
|
<?php
|
2006-08-22 02:51:27 +04:00
|
|
|
$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);
|
|
|
|
?>
|