]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
(no commit message)
authorMike Bayer <mike_mp@zzzcomputing.com>
Thu, 21 Jul 2005 03:53:01 +0000 (03:53 +0000)
committerMike Bayer <mike_mp@zzzcomputing.com>
Thu, 21 Jul 2005 03:53:01 +0000 (03:53 +0000)
lib/sqlalchemy/engine.py

index 978ba8c91929bbcd0edbc9f7c5e8c9ac71630f18..7362ba1ae0ff68420dbc23a41ddc967213a9833d 100644 (file)
@@ -61,6 +61,9 @@ class SQLEngine(schema.SchemaEngine):
 
     def schemadropper(self, proxy, **params):
         raise NotImplementedError()
+
+    def reflecttable(self, table):
+        raise NotImplementedError()
         
     def columnimpl(self, column):
         return sql.ColumnSelectable(column)
@@ -138,7 +141,6 @@ class ResultProxy:
     def __init__(self, cursor):
         self.cursor = cursor
         metadata = cursor.description
-        print "meta: " + repr(metadata)
         self.props = {}
         i = 0
         for item in metadata:
@@ -149,7 +151,6 @@ 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