iain duncan <[EMAIL PROTECTED]> writes: > For example, I have established that I will at least be using some > Many-To-Many tables where the primary key is a combination of foreign > keys, and that I'll need joins between that and some other tables. I > would think this would not be too much for SO would it?
It would. SO can't handle multiple columns as PK. It demands either a string column or an auto-increment column as the PK. It can generate the sequence for the integer column but you'll have to handle the uniqueness on your own for the string column. -- Jorge Godoy <[EMAIL PROTECTED]> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "TurboGears" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/turbogears?hl=en -~----------~----~----~----~------~----~------~--~---

