def __init__(self, pool): '''Create and populate the SQLite Units Table''' Table.__init__(self, pool) # Cached row ids self._id = {} self._id['Publisher'] = None self._id['Subscriber'] = None
def __init__(self, connection): '''Create and populate the SQLite Units Table''' Table.__init__(self, connection) # Cached row ids self._id = {} self._id['Publisher'] = None self._id['Subscriber'] = None
def __init__(self, connection, parent): '''Create the SQLite TESS Readings table''' Table.__init__(self, connection) self.parent = parent self.setOptions(auth_filter=True) self.resetCounters()
def __init__(self, connection, secs_resol): '''Create and Populate the SQlite Time of Day Table''' Table.__init__(self, connection) self.secs_resol = secs_resol self.ONE = datetime.timedelta(seconds=secs_resol)
def __init__(self, pool, validate=False): Table.__init__(self, pool) self.resetCounters()
def __init__(self, pool): '''Create and Populate the SQLite Date Table''' Table.__init__(self, pool)
def __init__(self, connection, validate=False): Table.__init__(self, connection) self.resetCounters()
def __init__(self, connection): '''Create and Populate the SQLite Date Table''' Table.__init__(self, connection)
def __init__(self, connection): '''Create and populate the SQLite Location Table''' Table.__init__(self, connection)
def __init__(self, pool, parent): '''Create the SQLite TESS Readings table''' Table.__init__(self, pool) self.parent = parent self.setOptions(location_filter=True) self.resetCounters()
def __init__(self, pool): '''Create and populate the SQLite Location Table''' Table.__init__(self, pool)
def __init__(self, pool, secs_resol): '''Create and Populate the SQlite Time of Day Table''' Table.__init__(self, pool) self.secs_resol = secs_resol self.ONE = datetime.timedelta(seconds=secs_resol)