From: Mark Huang Date: Mon, 2 Oct 2006 15:36:48 +0000 (+0000) Subject: - add helper class for slice_instantiations X-Git-Tag: pycurl-7_13_1~686 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=71b475e73b5130b95d636148a8c92c95268d79e1;p=plcapi.git - add helper class for slice_instantiations --- diff --git a/PLC/SliceInstantiations.py b/PLC/SliceInstantiations.py new file mode 100644 index 00000000..7b4b2a43 --- /dev/null +++ b/PLC/SliceInstantiations.py @@ -0,0 +1,19 @@ +# +# Functions for interacting with the slice_instantiations table in the database +# +# Mark Huang +# Copyright (C) 2006 The Trustees of Princeton University +# +# $Id: SliceInstantiations.py,v 1.1 2006/09/06 15:36:07 mlhuang Exp $ +# + +class SliceInstantiations(list): + """ + Representation of the slice_instantiations table in the database. + """ + + def __init__(self, api): + sql = "SELECT * FROM slice_instantiations" + + for row in api.db.selectall(sql): + self.append[row['instantiation']]