Welcome Guest, Not a member yet? Register   Sign In
Nesting queries within active record
#9

[eluser]m4rw3r[/eluser]
I've done some peeking into ActiveRecord's code, and that is what it does, from my understanding of Ruby.

It does a join, and then does something like (this is in PHP, and overly simplified):
Code:
foreach($rows as $row)
{
    if( ! isset($result[$row['id']]))
    {
        $result[$row['id']] = new Manufacturer($row);
    }

    $result[$row['id']]->cars[] = new Car($row); // constructor will filter the data
}


Messages In This Thread
Nesting queries within active record - by El Forum - 10-03-2008, 07:41 PM
Nesting queries within active record - by El Forum - 10-04-2008, 04:26 AM
Nesting queries within active record - by El Forum - 10-04-2008, 05:09 AM
Nesting queries within active record - by El Forum - 10-04-2008, 07:24 AM
Nesting queries within active record - by El Forum - 10-04-2008, 07:25 AM
Nesting queries within active record - by El Forum - 10-04-2008, 09:52 AM
Nesting queries within active record - by El Forum - 10-04-2008, 10:15 AM
Nesting queries within active record - by El Forum - 10-04-2008, 10:36 AM
Nesting queries within active record - by El Forum - 10-04-2008, 11:49 AM
Nesting queries within active record - by El Forum - 10-05-2008, 06:29 PM
Nesting queries within active record - by El Forum - 10-05-2008, 10:27 PM
Nesting queries within active record - by El Forum - 10-05-2008, 10:34 PM
Nesting queries within active record - by El Forum - 10-05-2008, 10:45 PM
Nesting queries within active record - by El Forum - 10-05-2008, 10:46 PM
Nesting queries within active record - by El Forum - 10-05-2008, 11:29 PM
Nesting queries within active record - by El Forum - 10-05-2008, 11:46 PM
Nesting queries within active record - by El Forum - 10-06-2008, 12:55 AM
Nesting queries within active record - by El Forum - 10-06-2008, 01:02 AM
Nesting queries within active record - by El Forum - 10-06-2008, 01:04 AM
Nesting queries within active record - by El Forum - 10-06-2008, 01:08 AM



Theme © iAndrew 2016 - Forum software by © MyBB