aukemid wrote:
If you make 4 objects:
Person => contains the data about the person: name, age
Group => contains the data about the group: name
GroupPerson => contains a FK to Group and a FK to Person (and perhaps other data)
GroupGroup => contains two different FK's both to Group (and perhaps other data)
This way all data is in the Person or Group object.
And the relations are in GroupPerson and GroupGroup.
You can store persons in groups and groups in groups.
ah ok i see, this way i dont need to create tables dynamically.
thanks for your reply.
anyone else got an opinion on this?