This commit is contained in:
jxxghp
2023-06-06 07:15:17 +08:00
commit 4d06f86e62
217 changed files with 13959 additions and 0 deletions

29
app/db/__init__.py Normal file
View File

@ -0,0 +1,29 @@
from sqlalchemy import create_engine, QueuePool
from sqlalchemy.orm import sessionmaker
from app.core.config import settings
# 数据库引擎
Engine = create_engine(f"sqlite:///{settings.CONFIG_PATH}/user.db",
pool_pre_ping=True,
echo=False,
poolclass=QueuePool,
pool_size=1000,
pool_recycle=60 * 10,
max_overflow=0)
# 数据库会话
SessionLocal = sessionmaker(autocommit=False, autoflush=False, bind=Engine)
def get_db():
"""
获取数据库会话
:return: Session
"""
db = None
try:
db = SessionLocal()
yield db
finally:
if db:
db.close()