[sqlalchemy] Re: Can't connect to SQLite databases

2011-10-23 Thread jmsilva
On Oct 22, 9:00 pm, Michael Bayer mike...@zzzcomputing.com wrote: what happens if you say: import sqlite3 import os sqlite3.connect(os.path.abspath(test.db)) ? thats essentially what SQLA 0.7 does in order to guard against os.chdir() changes as subsequent connections occur. OK, you

[sqlalchemy] storing mutable python list into SQL db

2011-10-23 Thread rivka
Hi, I am trying to efficiently manage mutable python lists in SQL db. Latest release of SQLAlchemy offers solution for dictionaries with the Mutable class. I would like to create similar solution with list (rather than wrapping up my list in a dictionary - which is my fall- back solution). Any