sqlite_ext.py 317 B

123456789101112131415161718
  1. import typing
  2. class SqliteExtDatabase:
  3. def __init__(self, path: typing.Optional[str]):
  4. pass
  5. def atomic(self):
  6. pass
  7. def init(self, path: str):
  8. pass
  9. def close(self):
  10. pass
  11. def create_tables(self, tables: typing.List[typing.Any], safe: bool = True):
  12. pass