git://git.onelab.eu
/
plcapi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
50b5ecc
)
- rename fill to selectall
author
Mark Huang
<mlhuang@cs.princeton.edu>
Wed, 8 Nov 2006 22:08:09 +0000
(22:08 +0000)
committer
Mark Huang
<mlhuang@cs.princeton.edu>
Wed, 8 Nov 2006 22:08:09 +0000
(22:08 +0000)
PLC/Table.py
patch
|
blob
|
history
diff --git
a/PLC/Table.py
b/PLC/Table.py
index
68873b4
..
ae526b5
100644
(file)
--- a/
PLC/Table.py
+++ b/
PLC/Table.py
@@
-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)