Package buildbot :: Package db :: Module sourcestampsets
[frames] | no frames]

Source Code for Module buildbot.db.sourcestampsets

 1  # This file is part of Buildbot.  Buildbot is free software: you can 
 2  # redistribute it and/or modify it under the terms of the GNU General Public 
 3  # License as published by the Free Software Foundation, version 2. 
 4  # 
 5  # This program is distributed in the hope that it will be useful, but WITHOUT 
 6  # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 
 7  # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more 
 8  # details. 
 9  # 
10  # You should have received a copy of the GNU General Public License along with 
11  # this program; if not, write to the Free Software Foundation, Inc., 51 
12  # Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 
13  # 
14  # Copyright Buildbot Team Members 
15   
16  from buildbot.db import base 
17   
18 -class SourceStampSetsConnectorComponent(base.DBConnectorComponent):
19 # Documentation is in developer/database.rst 20
21 - def addSourceStampSet(self):
22 def thd(conn): 23 # insert the sourcestampset. sourcestampset has no attributes, but 24 # inserting a new row results in a new setid 25 r = conn.execute(self.db.model.sourcestampsets.insert(), dict()) 26 sourcestampsetid = r.inserted_primary_key[0] 27 28 return sourcestampsetid
29 return self.db.pool.do(thd)
30