On 9/14/06, Chris <[EMAIL PROTECTED]> wrote: > > Using database URI sqlite:///C|\py\Snazzy/devdata.sqlite Exception > exceptions.AttributeError: "'pysqlite2.dbapi2.Connection' object has no > attribute 'autocommit'" in <bound method Transaction.__del__ of > sqlobject.dbconnection.Transactio > n object at 0x015B7F70>> ignored >
As Kevin said, this sounds like the versions of sqlite/pysqlite you have installed are incompatible. However, it looks like pysqlite2 is falling over when trying a transaction. Try using the following dburi which will disable transactions and see if it solves your problem: notrans_sqlite:///C|\py\Snazzy/devdata.sqlite Lee -- Lee McFadden blog: http://www.splee.co.uk work: http://fireflisystems.com --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

