[Checkins] SVN: Products.SQLAlchemyDA/trunk/da.py

Andreas Jung andreas at andreas-jung.com
Tue May 1 06:44:10 EDT 2007


Log message for revision 74958:
  

Changed:
  U   Products.SQLAlchemyDA/trunk/da.py

-=-
Modified: Products.SQLAlchemyDA/trunk/da.py
===================================================================
--- Products.SQLAlchemyDA/trunk/da.py	2007-05-01 09:57:09 UTC (rev 74957)
+++ Products.SQLAlchemyDA/trunk/da.py	2007-05-01 10:44:09 UTC (rev 74958)
@@ -74,18 +74,17 @@
         return d
 
     def query(self, query_string, max_rows=None, query_data=None):
-        """ foo """
+        """ *the* query() method"""
 
         wrapper = getSAWrapper(self.sqlalchemy_wrapper_name)
         c = wrapper.connection
 
-
         rows = []
         nselects = 0
         desc = None
 
         for qs in [x for x in query_string.split('\0') if x]:
-
+               
             if query_data:
                 proxy = c.execute(qs, query_data)
             else:



More information about the Checkins mailing list