Spaces:
Sleeping
Sleeping
File size: 482 Bytes
009f914 | 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 | from sqlalchemy import create_engine
from sqlalchemy.orm import sessionmaker, declarative_base
DATABASE_URL = "sqlite:///./learnlanguage.db"
engine = create_engine(
DATABASE_URL,
connect_args={"check_same_thread": False}
)
SessionLocal = sessionmaker(
autocommit=False,
autoflush=False,
bind=engine
)
Base = declarative_base()
# ✅ IMPORTANT: THIS WAS MISSING
def get_db():
db = SessionLocal()
try:
yield db
finally:
db.close() |