Re: Question on Multiple Database Connections

2012-12-14 Thread Matt Woodward
On Thursday, December 13, 2012 8:01:13 AM UTC-8, ke1g wrote: > > > Just a shot in the dark: Maybe if, since you're not using the ORM on the > 'other' database, you shouldn't use django-pyodbc, but rather just pyobdc. > I should have said this earlier but I had the same thought and tried doing it

Re: Question on Multiple Database Connections

2012-12-13 Thread Bill Freeman
On Wed, Dec 12, 2012 at 7:49 PM, Matthew Woodward wrote: > I'm working on an application that uses two databases -- one is the main > database that Django ORM talks to, where sessions are stored, etc. and the > other is an external database where we need to run some storedprocs to > retrieve some

Question on Multiple Database Connections

2012-12-12 Thread Matthew Woodward
I'm working on an application that uses two databases -- one is the main database that Django ORM talks to, where sessions are stored, etc. and the other is an external database where we need to run some storedprocs to retrieve some data. This is all working fine for the most part but I ran into a