On 14 Okt., 09:40, patrickk <[EMAIL PROTECTED]> wrote:
> I´m having a similar problem and I´m not sure if different settings-
> files are the solution.
>
> our project has one database. within our site, we have a lot of games,
> where people can participate. the game-table has a lot of entries, so I
> ´d like to store old games in a second database (=archive) and make
> them available for the editors through the admin-interface.
>
> now, I could set up an entirely different project with an own settings-
> file. that´s (probably) working.
> but, is it also possible to use a model within my main-project and
> tell (?) that model to use a different database? or do I have to use
> the multi-db-branch for that?
>
> thanks,
> patrick

Hello Patrick,

I'm currently using the multi-db-branch patch in an own project and
came across the need to switch between ~80 databases. Using a
different settings.py would cause a nonsense number of django-
instances running. So I had a talk with Ben Ford and Koen, who have
provided an actual state of this patch. They told me, that connections
are lazy. So the way was free: I use the multi-db-branch and -
depending on the given domain - I overwrite the db-connection of some
models via a request-middleware.

Kind regards
Mario

>
> On Oct 14, 6:04 am, "Russell Keith-Magee" <[EMAIL PROTECTED]>
> wrote:
>
> > On 10/13/07, Brian DeGeeter <[EMAIL PROTECTED]> wrote:
>
> > > So looks like there is no easy answer to my dynamic db settings.  I'd
> > > be interested in the complex answer if anyone has one.  Specifically
> > > for the command line tool we have.  Editing the settings.py with a sed
> > > script seems so crude.
>
> > It depends on exactly what you mean by 'dynamic'. If you mean 'changes
> > during execution', then the answer will generally be no. However, your
> > comment about using sed to modify settings.py suggests that you really
> > mean something like 'changes depending upon the context in which it is
> > accessed'.
>
> > If the latter is what you mean, you should remember that :
> > 1) Your settings file doesn't need to be called 'settings.py'. Django
> > uses the DJANGO_SETTINGS_FILE environment variable and the --settings
> > option on manage.py to load settings
>
> > 2) Django settings files are just python files.
>
> > As a result, the following setup:
>
> > base_settings.py
> > -----------------------
>
> > INSTALLED_APPS=(...)
>
> > database1_settings.py
> > --------------------
>
> > from base_settings import *
>
> > DATABASE_BACKEND='sqlite3'
> > DATABASE_NAME='foo'
>
> > database2_settings.py
> > --------------------
>
> > from base_settings import *
>
> > DATABASE_BACKEND='sqlite3'
> > DATABASE_NAME='bar'
>
> > is entirely legal; there's no need to use sed - just factor out the
> > common settings, and direct manage.py (or whatever other script you
> > are using) to point at the appropriate settings file at time of
> > execution.
>
> > Yours,
> > Russ Magee %-)


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to