_sqlite
Module Contents
Functions
Open an SQLAlchemy SQLite async database. |
|
|
Open an SQLAlchemy SQLite database. |
- open_async_database_sqlite(db_file: str, open_method: experimentation.database._open_method.OpenMethod = OpenMethod.OPEN_IF_EXISTS) sqlalchemy.ext.asyncio.AsyncEngine
Open an SQLAlchemy SQLite async database.
- Parameters:
db_file – File for the database.
open_method – The way the database should be opened.
- Returns:
The opened database.
- open_database_sqlite(db_file: str, open_method: experimentation.database._open_method.OpenMethod = OpenMethod.OPEN_IF_EXISTS) sqlalchemy.engine.Engine
Open an SQLAlchemy SQLite database.
- Parameters:
db_file – File for the database.
open_method – The way the database should be opened.
- Returns:
The opened database.