> I'm having trouble rolling back a transaction and wanted to know if > the problem is me, web.py, or MySQL. Perhaps I just don't understand > how this should work.
MySQL uses MyISAM as engine by default and it doesn't support transactions. Try creating table with InnoDB engine. CREATE TABLE foo (bar FLOAT) engine=InnoDB ; --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" 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/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
