Re: MyISAM vs InnoDB; was Django 1.2.1 strange problem

2011-12-16 Thread Joey Espinosa
Right, thanks for the correction! -- Joey "JoeLinux" Espinosa Software Developer http://about.me/joelinux On Dec 16, 2011 9:15 AM, "Tom Evans" wrote: > On Fri, Dec 16, 2011 at 1:44 PM, Joey Espinosa > wrote: > > I think it's also worth

Re: MyISAM vs InnoDB; was Django 1.2.1 strange problem

2011-12-16 Thread Tom Evans
On Fri, Dec 16, 2011 at 1:44 PM, Joey Espinosa wrote: > I think it's also worth noting that MyISAM doesn't support foreign keys, > which would make the object relationships that Django creates impossible. > MyISAM supports foreign keys just fine, it just doesn't

Re: MyISAM vs InnoDB; was Django 1.2.1 strange problem

2011-12-16 Thread Masklinn
On 2011-12-16, at 14:44 , Joey Espinosa wrote: > I think it's also worth noting that MyISAM doesn't support foreign keys, > which would make the object relationships that Django creates impossible. That's not correct, the relationships are there (it's just tags between two columns), they're just

Re: MyISAM vs InnoDB; was Django 1.2.1 strange problem

2011-12-16 Thread Joey Espinosa
> > ** ** > > *From:* django-users@googlegroups.com [mailto: > django-users@googlegroups.com] *On Behalf Of *Ian Clelland > *Sent:* Thursday, December 15, 2011 1:02 PM > *To:* django-users@googlegroups.com > *Subject:* Re: Django 1.2.1 strange problem > > **

MyISAM vs InnoDB; was Django 1.2.1 strange problem

2011-12-16 Thread Sells, Fred
print Cursor.execute(sql) From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On Behalf Of Ian Clelland Sent: Thursday, December 15, 2011 1:02 PM To: django-users@googlegroups.com Subject: Re: Django 1.2.1 strange problem On Thu, Dec 15, 2011 at 5:56 AM, Sells, Fre

Re: Django 1.2.1 strange problem

2011-12-15 Thread Ian Clelland
On Thu, Dec 15, 2011 at 5:56 AM, Sells, Fred wrote: > I’ve got an older app that’s been running in production for about 2 years > on RedHat 4, MySQL 5.0.77 with MyISAM tables, Django 1.2.1 and Python 2.4. > > > ** ** > > This app is used heavily by internal

Django 1.2.1 strange problem

2011-12-15 Thread Sells, Fred
I've got an older app that's been running in production for about 2 years on RedHat 4, MySQL 5.0.77 with MyISAM tables, Django 1.2.1 and Python 2.4. This app is used heavily by internal users, which is a relatively light load compared to public sites. I actually use Flex for the client side