2007-04-13 00:52:30 +04:00
|
|
|
|
2007-04-14 01:49:11 +04:00
|
|
|
<code type="php">
|
|
|
|
|
|
|
|
// find the first ten users and associated emails
|
|
|
|
|
|
|
|
$q = new Doctrine_Query();
|
|
|
|
|
|
|
|
$coll = $q->from('User u LEFT JOIN u.Email e')->limit(10);
|
|
|
|
|
|
|
|
// find the first ten users starting from the user number 5
|
|
|
|
|
|
|
|
$coll = $q->from('User u')->limit(10)->offset(5);
|
|
|
|
|
|
|
|
</code>
|