Setting up a DB connection manually

2009-12-09 Thread BlueBird
Hi, I have a setup where I need to create manually a connection to a SQLite DB. I haven't really succeeded in doing that so far. More precisely, I am running a test suite which uses django.test.utils.setup_test_environment() and the test DB defined settings.TEST_DATABASE_NAME. That works well in

Re: No such table error when using threads

2009-10-27 Thread BlueBird
On 24 oct, 21:52, BlueBird wrote: > Hi, > > I've got a strange behavior. My application is split between a web > frontend and a backend which use the DB to exchange tasks and results. > > The problem is with the backend. It's just a regular program, >

No such table error when using threads

2009-10-24 Thread BlueBird
Hi, I've got a strange behavior. My application is split between a web frontend and a backend which use the DB to exchange tasks and results. The problem is with the backend. It's just a regular program, accessing the DB to fetch tasks, completing them and then storing the result in a DB. The pr