I was considering creating a separate SQLite database for certain apps on a Django project.
However, I did not want to use direct SQLite access if possible.
Django-style ORM access to these database would be ideal.
Is this possible?
Thank you.
|
3
|
|
|
|
|
|
Currently no -- each project uses one database, and every app must exist within it. If you want to have an app-specific database, you cannot do so through the Django ORM. See the Django wiki page on Multiple Database Support. |
||
|
|
|
|
Yes - the low-level API for this is in place, it's just missing a convenient high-level API at the moment. These quotes are from James Bennett (Django's release manager) on programming reddit:
|
||
|
|
|
|
This isn't possible yet, but there is some talk of it on the wiki, Multiple Database Support in Django. It was also brought up during the keynote on the future of Django at DjangoCon 2008 and made one of the higher priority issues. |
||
|
|