> Don't create a new database pool per request. Store one in the resource, > that is, create one __init__ and access it using self.dbpool. No need to > do connect(), either. That should solve it. That worked beautifully! Thanks! Is there any need for me to run dbpool.close() at any point? Steve