More info: I have an "sqlite://:memory:" dal connection. I am reusing this memory database for unit testing.
I need to completely remove the database on my def tearDown() function. Something like db._cursor.close() However the database still seems to be in memory when I load it up again. -- Thadeus On Tue, May 4, 2010 at 3:58 PM, Thadeus Burgess <[email protected]> wrote: > I have a DAL instance that I want to tear down so the database becomes > unlocked. > > How can I accomplish this? > > -- > Thadeus >

