I have install multiple-db-support branch, and write some code like that: #settings.py DATABASE_ENGINE = 'mysql' # 'postgresql', 'mysql', 'sqlite3' or 'ado_mssql'. DATABASE_NAME = 'django' # Or path to database file if using sqlite3. DATABASE_USER = 'root' # Not used with sqlite3. DATABASE_PASSWORD = '' # Not used with sqlite3. DATABASE_HOST = 'localhost' # Set to empty string for localhost. Not used with sqlite3. DATABASE_PORT = '3306' # Set to empty string for default. Not used with sqlite3.
OTHER_DATABASES = { 'local': { 'DATABASE_ENGINE': 'mysql', 'DATABASE_NAME': 'test' } } #models.py from django.db import models # Create your models here. class Wiki(models.Model): pagename = models.CharField(maxlength=20, unique=True) content = models.TextField() >>> page = Wiki.objects.get(pagename='FrontPage') It will use the default connection, then i change the model's connection >>> Wiki.objects.db = connections['local'] Traceback (most recent call last): File "<console>", line 1, in ? File "/usr/local/lib/python2.4/site-packages/Django-0.91-py2.4.egg/django/db/__init__.py", line 274, in __set__ self.local.cnx[instance] = instance_connection NameError: global name 'instance_connection' is not defined how can I fix these problem? thanks! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---