(self, timestamp, version)
| 373 | return self._connection.runQuery(initQuery) |
| 374 | |
| 375 | def addVersionLog(self, timestamp, version): |
| 376 | content = (timestamp, version, ) |
| 377 | self._connection.runQuery("INSERT INTO clients_snapshots VALUES (?, ?)", content) |
| 378 | |
| 379 | class RoomDBManager(object): |
| 380 | def __init__(self, dbpath, loadroomscallback): |
no outgoing calls
no test coverage detected