Re: Request for 'transaction' disambiguation

2006-09-14 Thread Hawkeye
Yeah... I added a comment to the docs, but "default-storage-engine=innodb" is the way that I configured it, and it works. Thanks for the feedback though. --Ben --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Request for 'transaction' disambiguation

2006-09-13 Thread Andy Dustman
On 9/13/06, Hawkeye <[EMAIL PROTECTED]> wrote: > > Nevermind... > > Looks like Django defaults to the default MySQL table type (MyISAM), > which doesn't support transactions. > > My fault completely. You can change the default table type in your MySQL server configuration (/etc/mysql/my.cnf).

Re: Request for 'transaction' disambiguation

2006-09-13 Thread Hawkeye
Nevermind... Looks like Django defaults to the default MySQL table type (MyISAM), which doesn't support transactions. My fault completely. --Ben --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users"

Request for 'transaction' disambiguation

2006-09-12 Thread Hawkeye
Hi all, I'm poking-around with transactions... and I must admit I'm confused as to how to properly implement transactions in Django. I'm trying to make use of "Tying transactions to HTTP requests", but I'm not having much luck. I've placed TransactionMiddleware in the MIDDLEWARE_CLASSES. I