"jason" <[EMAIL PROTECTED]> writes: > How do I add a row to a table and add a table to and existing database > in turbogears/sqlobject?
To add a row to an existing table you have to use SO's update syntax. It means that you have to take a snapshot of the database before, create an SQL script to do the change and then call tg-admin sql update. It's not magical. If there's no relevant data it's easier to drop and create the table again. To add a new table just call 'tg-admin sql create'. Be seeing you, -- 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 -~----------~----~----~----~------~----~------~--~---

