(self)
| 182 | raise FileNotFoundError(f"SQLite database file not found: {self.sqlite_path}") |
| 183 | |
| 184 | async def delete(self): |
| 185 | pass |
| 186 | |
| 187 | async def execute(self, sql: str, data: Union[Sequence, Dict[str, Any]] = ()) -> str: |
| 188 | """使用单独的Python进程执行SQLite查询""" |
nothing calls this directly
no outgoing calls
no test coverage detected