(self)
| 387 | self._connection.close() |
| 388 | |
| 389 | def connect(self): |
| 390 | self._connection = adbapi.ConnectionPool("sqlite3", self._dbPath, check_same_thread=False) |
| 391 | self._createSchema().addCallback(self.loadRooms) |
| 392 | |
| 393 | def _createSchema(self): |
| 394 | initQuery = 'create table if not exists persistent_rooms (name STRING PRIMARY KEY, playlist STRING, playlistIndex INTEGER, position REAL, lastSavedUpdate INTEGER)' |
no test coverage detected