On 10/20/07, Sean DiZazzo <[EMAIL PROTECTED]> wrote: > > Hi all, > > I'm just beginning to mess around with TurboGears and I've run against > a wall. I'm trying to connect to an established mysql database, but > it already has an 'id' column, and it's not an integer field like > SQLObject expects. > > Here's the error I get : > > ValueError: invalid literal for int() with base 10: '13fae850' > > Thanks in advance. > > ~Sean
Try to use SQLAlchemy, because SQLObject does not handle databased with non-integer primary keys... And take care to install SA 0.3.10 or 0.4beta6 but not SA 0.4 finale for the moment since beta1 of TurboGears has a problem with the final version of SA. We are in the process of releasing a beta2 that handle the final SA 0.4 version. Cheers, Florent. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

