Re: Multiple Database problem

2024-08-18 Thread Pandiya rajan
To effectively use multiple databases within a single application, start by configuring multiple connection strings or configuration entries for each database. Next, implement a data access layer to handle interactions with the different databases through a unified interface. This layer abstr

Re: Multiple Database problem

2024-08-18 Thread suraj shaw
Yes, Its possible. Please follow this - https://docs.djangoproject.com/en/5.0/topics/db/multi-db/ Thanks Suraj On Wed, Aug 14, 2024 at 8:45 PM Dhanushpathi Prakash < dhanushpathiprak...@gmail.com> wrote: > Is there is possible to multiple database with a single app. How? > > -- > You received th

Re: Multiple Database problem

2024-08-14 Thread Muhammad Juwaini Abdul Rahman
This is the first Google result for "django multiple databases": https://docs.djangoproject.com/en/5.0/topics/db/multi-db/ On Wed, 14 Aug 2024 at 23:15, Dhanushpathi Prakash < dhanushpathiprak...@gmail.com> wrote: > Is there is possible to multiple database with a single app. How? > > -- > You r

Re: multiple database

2020-10-11 Thread Dvs Khamele
Hi do you hire contract based python/django freelancer? We can help you in this and related tasks at fair prices. Reply or send email to divy...@pythonmate.com Best Regards, Divyesh Khamele, Pythonmate On Fri, 9 Oct 2020, 7:06 pm Chetan Ganji, wrote: > https://docs.djangoproject.com/en/3.1/topi

Re: multiple database

2020-10-09 Thread Chetan Ganji
https://docs.djangoproject.com/en/3.1/topics/db/multi-db/ Regards, Chetan Ganji +91-900-483-4183 ganji.che...@gmail.com http://ryucoder.in On Fri, Oct 9, 2020 at 6:41 PM Khaleel Ahmed H. M. Shariff < khaleelahme...@gmail.com> wrote: > Hi Suhaib, > May Peace, Blessings & Mercy of Almighty God b

Re: multiple database

2020-10-09 Thread Khaleel Ahmed H. M. Shariff
Hi Suhaib, May Peace, Blessings & Mercy of Almighty God be on you! Kindly throw some light on what database you are using. Are you using SQLite (default available with Python) or any other RDBMS like MySQL/Oracle??? Awaiting your reply. Thanks in advance. God Bless You! God Bless India!! -- Lov

Re: multiple database

2020-10-09 Thread Kasper Laudrup
On 09/10/2020 09.28, Suhaib Ali wrote: Hello everyone, i have some doubt regarding django database. i want to create multiple database according to the user wish. for example i want to create a company so each and every company needs their own database while creating the company https://d

Re: Multiple Database Setup

2019-10-30 Thread DANIEL URBANO DE LA RUA
https://docs.djangoproject.com/en/2.2/topics/db/multi-db/ On Wed, 30 Oct 2019, 14:39 Rajat Chopra, wrote: > I wish to create a project with 2 apps. Each app will have its own > database - one for payments and another for statements. > > I have created a set of models within the models.py for th

Re: Multiple Database Setup problem !?

2018-11-02 Thread 'Tom Evans' via Django users
Hi David Your router isn't configured correctly. This applies to all the allow_foo() methods, but see allow_migrate [1] as an example: Determine if the migration operation is allowed to run on the database with alias db. Return True if the operation should run, False if it shouldn’t run, or Non

Re: Multiple database Router

2011-10-26 Thread Simon Riggs
On Wed, Oct 26, 2011 at 4:19 PM, Tom Evans wrote: > Sure, all cars run on top of tarmac, > but you are unlikely to find a tarmac specialist on a car forum, you > are better off asking in a more appropriate place. Happy to bite on that one and am chuckling away at that. Databases are the engines

Re: Multiple database Router

2011-10-26 Thread Tom Evans
On Wed, Oct 26, 2011 at 3:59 PM, Gabriela wrote: > I need to implemente Asynchornous multimaster replication > implemented in Linux and Windows OS > > Bucardo is a great option but it doesnt works in Windows > > Any help would be welcome, Im new in this and I need a solution, Im > stuck installing

Re: Multiple database Router

2011-10-26 Thread Gabriela
I need to implemente Asynchornous multimaster replication implemented in Linux and Windows OS Bucardo is a great option but it doesnt works in Windows Any help would be welcome, Im new in this and I need a solution, Im stuck installing softwares and configuring URLs and IPs Cheers Gabi On Oct 2

Re: Multiple database Router

2011-10-26 Thread Tom Evans
On Wed, Oct 26, 2011 at 3:38 PM, Gabriela wrote: > Thanks Tom, > > so Django dont allow to make replication? > Django is a web application framework, database replication is orthogonal to that. My current setup has a multi data centre, multi master replication, with a couple of read slaves in ea

Re: Multiple database Router

2011-10-26 Thread Gabriela
Can you suggest me , if you know, any software replicator, I had only configure with RubyRep and SymmetricDS but I need more options? I have been trying wit DBReplicator but is impossible. Do you handle this theme about replication? Cheers On Oct 26, 4:38 pm, Gabriela wrote: > Thanks Tom, > > so

Re: Multiple database Router

2011-10-26 Thread Gabriela
Thanks Tom, so Django dont allow to make replication? On Oct 26, 4:32 pm, Tom Evans wrote: > On Wed, Oct 26, 2011 at 3:24 PM, Gabriela wrote: > > I need to synchronize multiple databases, i have readed the > >https://docs.djangoproject.com/en/1.3/topics/db/multi-db/where they > > explain how to

Re: Multiple database Router

2011-10-26 Thread Tom Evans
On Wed, Oct 26, 2011 at 3:24 PM, Gabriela wrote: > I need to synchronize multiple databases, i have readed the > https://docs.djangoproject.com/en/1.3/topics/db/multi-db/ where they > explain how to make this. > > > but i dont understand what do they refer with 'myapp' and 'other', are > this tabl

Re: Multiple Database Routing Based on Site

2011-09-02 Thread Mo Mughrabi
What I did is create an attribute in my models and called it model.py class Data(models.Model): # connection_name is my database name which points to the name from settings.py connection_name = "gis" name = models.CharField(max_length=50) area = models.IntegerField() and created a

Re: Multiple Database Routing Based on Site

2011-09-02 Thread Kevin
The only solution I can directly think of, since the SITE_ID is in settings.py would be to use some python logic to determine the database for that site. eg. if SITE_ID == 1: ... Database settings for site 1 here ... Use an if-then like this in your settings.py. Now if what your going after

Re: Multiple database queries

2011-03-08 Thread VidJa Hunter
I totally agree with the one database solution, which would be my choice, if there were no legal issues attached to the different datasets. On Mon, Mar 7, 2011 at 10:49 PM, Cal Leeming [Simplicity Media Ltd] < cal.leem...@simplicitymedialtd.co.uk> wrote: > Hey Vidja, > > May I ask why so many dat

Re: Multiple database queries

2011-03-07 Thread Cal Leeming [Simplicity Media Ltd]
Sorry, I should make myself more clear. The complex lookups (such as range queries, full text search etc) take place inside Sphinx Search, then we do ID lookups from the database with the results from Sphinx. You can do column lookups as well on Sphinx >=0.99, so if you wanted to lookup the datab

Re: Multiple database queries

2011-03-07 Thread Cal Leeming [Simplicity Media Ltd]
Hey Vidja, May I ask why so many database instances are required? In my experience, if you get to the point where you really need this many, it's usually better to use a solution like Sphinx Search Engine, then employ your database as a heavy key/value store (with the bare necessary unique compoun

Re: Multiple database issue v1.2.3 - Django reading the wrong database

2010-10-27 Thread Russell Keith-Magee
On Wed, Oct 27, 2010 at 1:13 AM, Stodge wrote: > I have two PostgreSQL (postgresql_psycopg2) databases defined in my > settings; default and scenes. > > If I perform a filter using the 'scenes' DB I get the expected > results: > > Scene.objects.filter(name__contains='ME').using('scenes') > [, ] >

Re: Multiple database issue v1.2.3 - Django reading the wrong database

2010-10-26 Thread Stodge
Pasted misleading traceback, as I created the scene table in the default database to verify this. Traceback (most recent call last): File "", line 1, in File "/usr/lib/python2.6/site-packages/django/db/models/manager.py", line 132, in get return self.get_query_set().get(*args, **kwargs)

Re: Multiple Database Simple Example

2010-05-14 Thread Jani Monoses
if model._meta.app_label == 'myapp' and model._meta.object_name == 'ModelInDatabase2Name': That is - instead of just checking the app, check the app and the model name. Install the router, and any query involving ModelInDatabase2Name will be directed to the 'other' database. It would be help

Re: Multiple Database Simple Example

2010-05-13 Thread GRoby
Russ Magee, Thanks for the quick response, your message explained what I was not understanding and I was able to get my code working. :) Gregory Roby On May 13, 10:44 am, Russell Keith-Magee wrote: > On Thu, May 13, 2010 at 10:27 PM, GRoby wrote: > > Hello, > > > I am using Django 1.2 RC 1

Re: Multiple Database Simple Example

2010-05-13 Thread Russell Keith-Magee
On Thu, May 13, 2010 at 10:27 PM, GRoby wrote: > Hello, > > I am using Django 1.2 RC 1 and have setup multiple databases.  I have > everything working if I manually specify .using, for example: > > SomeObjects = ModelInDefaultDatabase.objects.all()  #This Works > > SomeObjects = ModelInDatabase2Na

Re: multiple database on django please helpme..

2010-01-12 Thread chiranjeevi muttoju
hi Gonzalo, i did nt find any help there.. could u please bclearer.. i really ned it.. if u know plz help me... On Tue, Jan 12, 2010 at 7:35 PM, Gonzalo Delgado wrote: > El 12/01/10 11:02, Shawn Milochik escribió: > > This will help you get help: > > > > http://catb.org/~esr/faqs/smart-questions.

Re: multiple database on django please helpme..

2010-01-12 Thread Gonzalo Delgado
El 12/01/10 11:02, Shawn Milochik escribió: > This will help you get help: > > http://catb.org/~esr/faqs/smart-questions.html > +1 -- Gonzalo Delgado -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to dja

Re: multiple database on django please helpme..

2010-01-12 Thread Shawn Milochik
This will help you get help: http://catb.org/~esr/faqs/smart-questions.html -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to djang

Re: Multiple Database

2008-11-26 Thread Malcolm Tredinnick
On Wed, 2008-11-26 at 11:46 -0600, Tim Chase wrote: > > I am currently attempting to roll my own multiple database > > support for django for a new project. I have attempted to > > search for examples of this but have not found very much. > > Does anyone have some examples on how I can accomplis

Re: Multiple Database

2008-11-26 Thread Tim Chase
> I am currently attempting to roll my own multiple database > support for django for a new project. I have attempted to > search for examples of this but have not found very much. > Does anyone have some examples on how I can accomplish this? There are multiple facets to "multiple database" us

Re: Multiple Database

2008-11-26 Thread Austin Gabel
Tim. I'm looking for a federation type of usage. I have several databases that I need to pull data from into one view. On Wed, Nov 26, 2008 at 11:46 AM, Tim Chase <[EMAIL PROTECTED]>wrote: > > > I am currently attempting to roll my own multiple database > > support for django for a new project.

Re: Multiple Database

2008-11-26 Thread kron4eg
But be careful with this piece of code, It's only prototype. For example, it opens new connection to database each time you accessing manager :) On Nov 26, 7:25 pm, Rock <[EMAIL PROTECTED]> wrote: > http://www.eflorenzano.com/blog/post/easy-multi-database-support-django/ > > On Nov 26, 8:30 am, "

Re: Multiple Database

2008-11-26 Thread Rock
http://www.eflorenzano.com/blog/post/easy-multi-database-support-django/ On Nov 26, 8:30 am, "Austin Gabel" <[EMAIL PROTECTED]> wrote: > Hello, > I am currently attempting to roll my own multiple database support for > django for a new project.  I have attempted to search for examples of this > b

Re: Multiple Database Support

2008-03-02 Thread Ben Ford
Hi Lee, There's been a lot of historic discussion about multi-database support, and the upshot is that no it isn't supported well right now. There's a branch in SVN, but it's pretty much defunct. I believe the current thinking is to use SQLAlchemy if you need to access other databases (try looking

Re: Multiple Database Support

2007-11-07 Thread Josh
I thought this *was* the last one that was asked :) On Nov 7, 4:01 pm, "Russell Keith-Magee" <[EMAIL PROTECTED]> wrote: > On Nov 8, 2007 7:00 AM, Josh <[EMAIL PROTECTED]> wrote: > > > > > Hi! > > > Has there been any more progress toward getting themultipledatabase > > branch merged into trunk?

Re: Multiple Database Support

2007-11-07 Thread Russell Keith-Magee
On Nov 8, 2007 7:00 AM, Josh <[EMAIL PROTECTED]> wrote: > > Hi! > > Has there been any more progress toward getting the multiple database > branch merged into trunk? I, among many others, would really like to > be able to use the newer features of django and access multiple > databases from the s

Re: Multiple Database Support

2007-11-07 Thread Josh
Hi! Has there been any more progress toward getting the multiple database branch merged into trunk? I, among many others, would really like to be able to use the newer features of django and access multiple databases from the same project... Thanks! Josh On Oct 17, 12:03 am, koenb <[EMAIL PROT

Re: multiple database support: oracle backend

2007-10-18 Thread Ben Ford
Hi There, I've had similar problems and it comes down to the line in query.py that looks in backend and sets QuerySet to _QuerySet or backend.QuesrySet if there is one... I've also written some code to mitigate against this, and I'd suggest anyone with an interest gets together on this so that we'r

Re: Multiple Database Support

2007-10-17 Thread markg
Thanks Koen! I will try the patch. On Oct 17, 12:03 am, koenb <[EMAIL PROTECTED]> wrote: > Hi Mark, > > You can find some newer work at ticket #4747. The patches there are > some work in progress trying to bring multi-db back in line with > trunk. > A lot has changed in trunk in the last year, so

Re: multiple database support: oracle backend

2007-10-17 Thread Carlos Hanson
On Oct 17, 1:29 pm, Carlos Hanson <[EMAIL PROTECTED]> wrote: > On Oct 17, 12:33 am, koenb <[EMAIL PROTECTED]> wrote: > > > In the latest patches for multi-db the QuerySet that is returned is no > > longer fixed, but varies with the model's manager. That should fix > > that problem for now. > > > K

Re: multiple database support: oracle backend

2007-10-17 Thread Carlos Hanson
On Oct 17, 12:33 am, koenb <[EMAIL PROTECTED]> wrote: > In the latest patches for multi-db the QuerySet that is returned is no > longer fixed, but varies with the model's manager. That should fix > that problem for now. > > Koen I've installed the latest patches for multi-db agains revision 645

Re: multiple database support: oracle backend

2007-10-17 Thread koenb
In the latest patches for multi-db the QuerySet that is returned is no longer fixed, but varies with the model's manager. That should fix that problem for now. Koen On 17 okt, 09:03, Ian <[EMAIL PROTECTED]> wrote: > I don't know anything about the multi-db branch, but I imagine that > whatever Q

Re: Multiple Database Support

2007-10-17 Thread koenb
Hi Mark, You can find some newer work at ticket #4747. The patches there are some work in progress trying to bring multi-db back in line with trunk. A lot has changed in trunk in the last year, so I think it is worth trying those out instead of the old branch. Off course there are still a lot of

Re: multiple database support: oracle backend

2007-10-17 Thread Ian
On Oct 16, 6:38 pm, Carlos Hanson <[EMAIL PROTECTED]> wrote: > I am having trouble with Django revision 6110 patched with multi- > db-6110.patch. > > Traceback (most recent call last): > File "", line 1, in ? > File "/usr/local/lib64/python2.4/site-packages/django/db/models/ > query.py", line

Re: multiple database support: oracle backend

2007-10-16 Thread koenb
Sorry Carlos, those patches are far from complete, and I don't use Oracle myself. For the moment the backends in the patches use the following to get the connection: connection = self.model._default_manager.db.connection Removing the import and putting in that line should do the trick.

Re: multiple database, messy solution?

2006-09-19 Thread rp
Hi Gregor, Thanks for the note. I'm quite excited about trying it this out. I'll post the results (I'm still a meeting away from finalizing the server changes) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Dja

Re: multiple database, messy solution?

2006-09-19 Thread phxx
I guess you query one database through django.db.connection.cursor() method. Though you could query the athor one by using the MySQLdb Module ( http://sourceforge.net/projects/mysql-python ). It would be something like that: >>> import MySQLdb as db >>> c = db.connection(host='hostaddress', user

Re: Multiple Database & 1 Django

2006-02-13 Thread Siah
Russ, I see the priorities. I'm going to go ahead with a single db for now, hopefully by the time I launch it the feature is out and I would rework some of the necessary changes. Thanks, Sia

Re: Multiple Database & 1 Django

2006-02-12 Thread Russell Keith-Magee
On 2/13/06, Siah <[EMAIL PROTECTED] > wrote: Hi,I am aware that there is a ticket for it:http://code.djangoproject.com/ticket/1142 I was wondering if the wrapper was small enough that can be squeezed by in version 9.2 or anytime soon as I am in desperate need to use it.Specifically, to separate che