Searched refs:db_path (Results 1 – 3 of 3) sorted by relevance
84 def __init__(self, working_dir="target", db_path=None): argument89 if db_path is None:90 db_path = os.path.join(working_dir, "ota_database.db")91 self.db_path = db_path92 with sqlite3.connect(self.db_path) as connect:120 with sqlite3.connect(self.db_path) as connect:162 with sqlite3.connect(self.db_path) as connect:176 with sqlite3.connect(self.db_path) as connect:
124 def __init__(self, *, working_dir='output', db_path=None, otatools_dir=None): argument134 if not db_path:135 db_path = os.path.join(self.working_dir, "ota_database.db")136 self.path = db_path
185 self.processes = ProcessesManagement(db_path='test_process.db')