Re: TransactionMiddleware not working

2009-07-21 Thread Parag Shah
Thanks for the help. Transactions work just fine after changing MyISam to InnoDB. -- Thanks & Regards Parag Shah On Tue, Jul 21, 2009 at 7:42 PM, Randy Barlow wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Parag Shah declared: > > I am using MySql. I believe it does support tran

Re: TransactionMiddleware not working

2009-07-21 Thread Randy Barlow
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Parag Shah declared: > I am using MySql. I believe it does support transactions. MySQL only supports transactions if you are using INNODB tables. This is not the default. - -- Randy Barlow Software Developer The American Research Institute http://a

Re: TransactionMiddleware not working

2009-07-21 Thread Hank Gay
Not all of the storage engines in MySQL support transactions, e.g., MyISAM doesn't. On Tue, Jul 21, 2009 at 9:54 AM, Parag Shah wrote: > Hi Andrew, > > I am using MySql. I believe it does support transactions. Here is the > version line of my instance of MySql > > $mysql -V > mysql  Ver 14.12 Dis

Re: TransactionMiddleware not working

2009-07-21 Thread Parag Shah
Hi Andrew, I am using MySql. I believe it does support transactions. Here is the version line of my instance of MySql $mysql -V mysql Ver 14.12 Distrib 5.0.67, for debian-linux-gnu (x86_64) using readline 5.2 -- Thanks & Regards Parag Shah On Tue, Jul 21, 2009 at 7:16 PM, Andrew Fong wrote:

Re: TransactionMiddleware not working

2009-07-21 Thread Andrew Fong
Just double checking, but are you using a DB that supports transactions? On Jul 21, 8:16 am, Parag Shah wrote: > Hello, > > Hello, > > I am using TransactionMiddleware to get per request transactions working in > my Django project. However, it does not seem to be working. > > I have a view in wh