Ed Leafe wrote: > If I were using MySQL for the app, though, I should set AutoCommit > to True, but in practice it really doesn't matter, since the flush() > method is implemented for each backend, and for MySQL it does nothing > anyway. >
Wrong. In MySQL it depends on the backend storage system which is used. When you are using ISAM tables, there is no transaction handling. In this case it doesn't matter if AutoCommit is True or False. If you are using InnoDb as the backend, MySQL supports transactions, so the setting depends on what you want to use (transactions or no transactions). _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/dabo-dev/[EMAIL PROTECTED]
