diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-12-08 18:47:20 +0000 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2006-12-08 18:47:20 +0000 |
| commit | e249e56cb9430668dcbe6b30c62457b8086fbc66 (patch) | |
| tree | 3a763f6103d064e8e310e4e31db940aa7724074e /lib/sqlalchemy/engine | |
| parent | c6538b6b3400cbfa939d4e3e8d0f0530e0530e9d (diff) | |
| download | sqlalchemy-e249e56cb9430668dcbe6b30c62457b8086fbc66.tar.gz | |
- fix to connection pool _close() to properly clean up, fixes
MySQL synchronization errors [ticket:387]
Diffstat (limited to 'lib/sqlalchemy/engine')
| -rw-r--r-- | lib/sqlalchemy/engine/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sqlalchemy/engine/base.py b/lib/sqlalchemy/engine/base.py index 0d9509eaf..e696950b9 100644 --- a/lib/sqlalchemy/engine/base.py +++ b/lib/sqlalchemy/engine/base.py @@ -594,7 +594,7 @@ class ResultProxy(object): self.cursor.close() if self.connection.should_close_with_result and self.dialect.supports_autoclose_results: self.connection.close() - + def _convert_key(self, key): """given a key, which could be a ColumnElement, string, etc., matches it to the appropriate key we got from the result set's metadata; then cache it locally for quick re-access.""" |
