bug fixes: sqlite writer with sqlalchemy

This commit is contained in:
Steve Nyemba 2024-02-02 18:22:17 -06:00
parent 9270695c95
commit 0ac7e68bbd
1 changed files with 1 additions and 1 deletions

View File

@ -177,7 +177,7 @@ class SQLiteWriter(SQLite,DiskWriter) :
super().__init__(**args)
self.table = args['table'] if 'table' in args else None
path = self.path
self._engine = create_engine(f'sqlite://{path}')
self._engine = create_engine(f'sqlite:///{path}')
# self.conn = sqlite3.connect(self.path,isolation_level="IMMEDIATE")
# self.conn.row_factory = sqlite3.Row