Alberto Valverde <[EMAIL PROTECTED]> writes: > You're right, works in Postgres too... However, are you sure this can > extended to all the databases SQLObject supports?
There's one drawback with this approach: all systems that access these tables have to use the same case (either uppercase or lowercase), depending on the database (PostgreSQL converts everything to lowercase, Oracle to uppercase -- and I believe the SQL standard says that it should be uppercase). Using quotes in table names in PostgreSQL turns off this case folding since you're saying "I really know what I'm doing". -- 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 -~----------~----~----~----~------~----~------~--~---

