Hello folks, I would like to create a many-to-many relationship between 2 objects, but with a little twist. I would like to store a few fields for each row in the relation.
Example: I want to store log entries for phone calls. So for each call from Person to a PhoneNumber, I would like to store the date, time and the duration of the call. How do I do this using RelatedJoin()? I cannot seem to find an example that lets me add fields to the join itself! Is this even possible with SQLObject? It is obviously possible to do this on a relational DB. Thanks in advance.

