Re: [sqlalchemy] sqlite and max_overflow

2013-05-28 Thread jo
Thanks for the tip, Michael, I'm going to see how to manage with this keyword (because I'm not specify such parameter, but probable is turbogears who uses it by default). j Michael Bayer wrote: you can't use max_overflow with the default connection pool used by the SQLite engine, remove

Re: [sqlalchemy] sqlite and max_overflow

2013-05-28 Thread Simon King
I think turbogears is loading your sqlalchemy parameters from a config file (dev.cfg perhaps?). You should look for a line of the form sqlalchemy.max_overflow = X and delete it. Hope that helps, Simon On Tue, May 28, 2013 at 10:34 AM, jo jose.soa...@sferacarta.com wrote: Thanks for the tip,

Re: [sqlalchemy] sqlite and max_overflow

2013-05-28 Thread jo
Yes, you are right, Simon, I found it in app.cfg as: sqlalchemy.max_overflow=40 # Bumped up from 10 sqlalchemy.pool_size=10# default thanks a lot. j Simon King wrote: I think turbogears is loading your sqlalchemy parameters from a config file (dev.cfg perhaps?). You should look for a

Re: [sqlalchemy] sqlite and max_overflow

2013-05-27 Thread Michael Bayer
you can't use max_overflow with the default connection pool used by the SQLite engine, remove that keyword. On May 27, 2013, at 7:17 AM, jo jose.soa...@sferacarta.com wrote: I have not been able to solve the problem can someone please help me? ... database.bind_meta_data() File

[sqlalchemy] sqlite and max_overflow

2013-05-10 Thread jo
Hi all, I'm trying to use turbogears and sqlite as: sqlalchemy.dburi=sqlite:// but I got this error: TypeError: Invalid argument(s) 'max_overflow' sent to create_engine(), using configuration SQLiteDialect_pysqlite/SingletonThreadPool/Engine. Please check that the keyword arguments are