Re: need help in multy db.

2010-02-24 Thread chiranjeevi muttoju
Thank you Shawn. On Wed, Feb 24, 2010 at 11:58 PM, Shawn Milochik wrote: > Multi-DB support doesn't exist in 1.1 -- only 1.2 (still in beta). > > The "managed" attribute in the Meta tells Django whether it should handle > the model with its ORM. The default is True. If it's True, Django will mak

Re: need help in multy db.

2010-02-24 Thread Shawn Milochik
Multi-DB support doesn't exist in 1.1 -- only 1.2 (still in beta). The "managed" attribute in the Meta tells Django whether it should handle the model with its ORM. The default is True. If it's True, Django will make a database table for that model. If not, Django's ORM won't do anything to the

need help in multy db.

2010-02-24 Thread chiranjeevi muttoju
Hi all, I'm using the multidb concept in django1.1. i studied some documentation and i tried and its working fine. but i have some doubts in that. class MyModel1(models.Model): class Meta: managed = False db_table = 'table1' objects = ExtDBManager(altconnection1) ... class