1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
from __future__ import annotations
from typing import TYPE_CHECKING
from sqlalchemy import text
from litestar import Litestar, get
from litestar.plugins.sqlalchemy import SQLAlchemyAsyncConfig, SQLAlchemyInitPlugin
if TYPE_CHECKING:
from sqlalchemy.ext.asyncio import AsyncEngine, AsyncSession
@get(path="/sqlalchemy-app")
async def async_sqlalchemy_init(db_session: AsyncSession, db_engine: AsyncEngine) -> str:
"""Interact with SQLAlchemy engine and session."""
one = (await db_session.execute(text("SELECT 1"))).scalar_one()
async with db_engine.begin() as conn:
two = (await conn.execute(text("SELECT 2"))).scalar_one()
return f"{one} {two}"
sqlalchemy_config = SQLAlchemyAsyncConfig(connection_string="sqlite+aiosqlite:///test.sqlite")
app = Litestar(
route_handlers=[async_sqlalchemy_init],
plugins=[SQLAlchemyInitPlugin(config=sqlalchemy_config)],
)
|