> Im trying to figure out how to pass check_same_thread = False to my
> sqlite database stored via file. I tried
>
> metadata.bind.check_same_thread = False
>
> to no effect.
You probably need to use create_engine explicitly, as in:
engine = create_engine(uri)
metadata.bind = engine
or, you might be able to pass the arguments within the connection string. See:
http://www.sqlalchemy.org/docs/05/dbengine.html#custom-dbapi-connect-arguments
--
Gaëtan de Menten
http://openhex.org