diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-07-19 03:39:09 +0000 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2005-07-19 03:39:09 +0000 |
commit | 1ee68a0f9ba9376148a8cb20426c412a6a7a2d12 (patch) | |
tree | c198b40b378726a37cc1abac82145c9fe0cc9e67 /lib/sqlalchemy/engine.py | |
parent | 941e456c91e5d1b093da353fc509a1fbe49cc949 (diff) | |
download | sqlalchemy-1ee68a0f9ba9376148a8cb20426c412a6a7a2d12.tar.gz |
Diffstat (limited to 'lib/sqlalchemy/engine.py')
-rw-r--r-- | lib/sqlalchemy/engine.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/sqlalchemy/engine.py b/lib/sqlalchemy/engine.py index 6ea026159..978ba8c91 100644 --- a/lib/sqlalchemy/engine.py +++ b/lib/sqlalchemy/engine.py @@ -138,6 +138,7 @@ class ResultProxy: def __init__(self, cursor): self.cursor = cursor metadata = cursor.description + print "meta: " + repr(metadata) self.props = {} i = 0 for item in metadata: @@ -148,6 +149,7 @@ class ResultProxy: def fetchone(self): row = self.cursor.fetchone() if row is not None: + print "row: " + repr(row) return RowProxy(self, row) else: return None |