Re: [GENERAL] Indirect access to data, given table name as a string

2007-04-28 Thread David Lee Lambert
On Sat, 2007-04-21 at 18:31 -0700, Arthaey Angosii wrote: > I want to allow "notes" on any row in any table in my database. A > table row may have multiple notes. Say my tables are "foo," "bar," and > "qux." I want to avoid having a lookup table for each of them > ("foo_notes," "bar_notes," and "qu

Re: [GENERAL] Indirect access to data, given table name as a string

2007-04-23 Thread Ron Johnson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 04/21/07 20:31, Arthaey Angosii wrote: > I want to allow "notes" on any row in any table in my database. A > table row may have multiple notes. Say my tables are "foo," "bar," and > "qux." I want to avoid having a lookup table for each of them > ("f

[GENERAL] Indirect access to data, given table name as a string

2007-04-22 Thread Arthaey Angosii
I want to allow "notes" on any row in any table in my database. A table row may have multiple notes. Say my tables are "foo," "bar," and "qux." I want to avoid having a lookup table for each of them ("foo_notes," "bar_notes," and "qux_notes"). Is there a standard way of solving this problem? Not