Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

35
votes
4answers
798 views

How to work around lack of support for foreign keys across databases in Django

I know Django does not support foreign keys across multiple databases: http://docs.djangoproject.com/en/1.3/topics/db/multi-db/#cross-database-relations But I'm looking for a workaround. What ...
5
votes
4answers
187 views

Is using multiple databases and South together possible?

My current project is getting extended with geographical stuff, so I'm trying to integrate GeoDjango and import some shapefiles for starters. My setup consists of the following: MySQL 5.0 as ...
5
votes
2answers
139 views

Syncing data between devel/live databases in Django

With Django's new multi-db functionality in the development version, I've been trying to work on creating a management command that let's me synchronize the data from the live site down to a developer ...
2
votes
1answer
214 views

Django multiple databases - can't connect to mysql server fallback to sqlite

I have a django applicaiton with multiple databases. The default database is on the local machine. There is also a remote mysql database which is used for some write operations, but it is not always ...
2
votes
3answers
388 views

Django multidb: write to multiple databases

With Django multidb, it's fairly easy to write a router that runs a master/slave infrastructure. But is it possible to write a router that writes to multiple databases? My use case is a collection of ...
2
votes
2answers
194 views

How to change db in django depending on request.get_host()?

I am creating multisites platform. Anybody can make simple site, with my platform. I plan to use django multidb support. One db for one site. And i need to change db settings depending on ...
1
vote
1answer
163 views

Django testing of multi-db with automatic routing

Simple problem - I'm using multi-db successfully with automatic routing setup as documented on a legacy db (which are unmanaged). Now I want to test it. I've already set a testrunner to get around ...
1
vote
0answers
64 views

routing a manytomany table to a non-default db in django

I'm using django's multi-db support via database routers to partition certain models to 1 db, and others into another. (Note that whether I "should" be doing that is irrelevant to my question.) I ...
1
vote
1answer
154 views

Will Django automatically switch to a slave if Multiple Databases are enabled and the master goes down?

I am a Django n00b and am looking at the "MasterSlaveRouter" example located in the Django docs: http://docs.djangoproject.com/en/dev/topics/db/multi-db/ In the example, if the "master" were to go ...
0
votes
1answer
84 views

Django using multiple databases

I have a model called FieldMap which is used throughout my project. I decided recently that the physical database for this model will exist on another machine (other than the default). So I now have ...
0
votes
1answer
33 views

Django: Would object creation involving FK still work when the 2 tables involved are in different databases?

I have a Django model: class Note(models.Model) : text = models.TextField() owner = models.ForeignKey(User) If Note and User are located on different databases, would the following ...
0
votes
1answer
121 views

mutli django admins with different db databases in django 1.2 - strange problem

I am using django 1.2 to create a multi site shop. I need multiple admin logins for each shop instance, e.g. site.com/au/admin site.com/uk/admin and so on. I have a middleware class and a dbrouter ...