- rename fill to selectall
authorMark Huang <mlhuang@cs.princeton.edu>
Wed, 8 Nov 2006 22:08:09 +0000 (22:08 +0000)
committerMark Huang <mlhuang@cs.princeton.edu>
Wed, 8 Nov 2006 22:08:09 +0000 (22:08 +0000)
PLC/Table.py

index 68873b4..ae526b5 100644 (file)
@@ -135,12 +135,12 @@ class Table(dict):
         for row in self.values():
             row.sync(commit)
 
-    def fill(self, rows):
+    def selectall(self, sql, params = None):
         """
         Given a list of rows from the database, fill ourselves with
         Row objects keyed on the primary key defined by the Row class
         we were initialized with.
         """
 
-        for row in rows:
+        for row in self.api.db.selectall(sql, params):
             self[row[self.row.primary_key]] = self.row(self.api, row)