Re: [RDBO] Arbitrary-depth joins: vote on syntax

2005-12-25 Thread Uwe Voelker
Hello, merry Christmas to all. > * Each product has one vendor > * Each vendor has many addresses > * Each address has one state > > Task: In a single query, get all Products with their vendors, the vendors' > addresses, and the state for each address. Please add also the possibility to say: Ge

Re: [RDBO] Arbitrary-depth joins: vote on syntax

2005-12-24 Thread Torsten Seemann
With the new "arbitrary-depth joins" feature, you can join as deep as you'd like. The syntax I'm using for this feature right now is a chain of relationship names, with "." between each one. Example: $products = Product::Manager->get_products( require_objects => [ 'vendor.addresse

Re: [RDBO] Arbitrary-depth joins: vote on syntax

2005-12-24 Thread John Siracusa
On 12/23/05 11:38 PM, Cees Hek wrote: > On 12/23/05, John Siracusa <[EMAIL PROTECTED]> wrote: >> With the new "arbitrary-depth joins" feature, you can join as deep as you'd >> like. The syntax I'm using for this feature right now is a chain of >> relationship names, with "." between each one. Exa

Re: [RDBO] Arbitrary-depth joins: vote on syntax

2005-12-23 Thread Cees Hek
On 12/23/05, John Siracusa <[EMAIL PROTECTED]> wrote: > With the new "arbitrary-depth joins" feature, you can join as deep as you'd > like. The syntax I'm using for this feature right now is a chain of > relationship names, with "." between each one. Example: > > $products = > Product::