I'm having some design issues.
I'm not quite sure how to tackle a community that is database driven. So far, I have the following flowchart:
main->community_type->community->members
What I need is a way to list the communities, their members and so on. Should I create a database for the community type, with the ID of each community inside it? Then create a database for the community itself?
I could then display all the communities within the type, however I'd have to access each community database (based on ID) to pull their name, and number of members, etc.
Or should I have the community_type database contain the ID, name, and some other info? This would be redundant since I already have it in the community database. Would this save on access times though?
I'm just not sure how to tackle this one. Any ideas?
Any tutorials for database design that don't run off on tangents that don't pertain to what I'm looking for?
My head hurts. I'm not used to having to think in this many dimensions when it comes to database design.
·genoa
If a dog craps in the yard and buries it, is that considered steganography?
I'm not quite sure how to tackle a community that is database driven. So far, I have the following flowchart:
main->community_type->community->members
What I need is a way to list the communities, their members and so on. Should I create a database for the community type, with the ID of each community inside it? Then create a database for the community itself?
I could then display all the communities within the type, however I'd have to access each community database (based on ID) to pull their name, and number of members, etc.
Or should I have the community_type database contain the ID, name, and some other info? This would be redundant since I already have it in the community database. Would this save on access times though?
I'm just not sure how to tackle this one. Any ideas?
Any tutorials for database design that don't run off on tangents that don't pertain to what I'm looking for?
My head hurts. I'm not used to having to think in this many dimensions when it comes to database design.
·genoa
If a dog craps in the yard and buries it, is that considered steganography?