> Anyway, back to the question: do think there is a way with standard django > to access two databases (maybe sequentially, changing database connections) > in one script? Or is the only way to use intermediate storage like a file?
The simplest way I can think of is to write your own SQL to access the other database model. You would also need to use your own cursor (the connection parameter would need to be modified). Of course, this means no model support. I've just started looking into this issue myself - adding a "read- only"-ish database to several read/write databases. In my case, I have only a few tables and queries to deal with, so I think the above will work. For a more complex example... good luck! -rob --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---