[sqlalchemy] 'Too many connections': Where am I handling sessions incorrectly?

2011-09-15 Thread Jeff
SQLAlchemy version 0.7.1 MySQL Ver 14.12 Distrib 5.0.77 We have a series of tables with one to many connections: A - B - C - D-E etc. Script1 has a big for loop over several hundred/thousand values. In each loop iteration it goes through A,B,C, makes some new entries, then calls Function1

Re: [sqlalchemy] 'Too many connections': Where am I handling sessions incorrectly?

2011-09-15 Thread Michael Bayer
On Sep 15, 2011, at 6:39 AM, Jeff wrote: SQLAlchemy version 0.7.1 MySQL Ver 14.12 Distrib 5.0.77 We have a series of tables with one to many connections: A - B - C - D-E etc. Script1 has a big for loop over several hundred/thousand values. In each loop iteration it goes through A,B,C,