生活在宁静的角落 sqlalchemy
sqlalchemy.exc.ObjectNotExecutableError: Not an executable object: 'select 1'
问题
在flask框架中连接数据库,并测试数据库是否连接成功
使用了mysql数据库和pymysql驱动
问题描述
代码
db = SQLAlchemy(app) with app.app_context(): with db.engine.connect() as conn: rs = conn.execute('select 1') print(rs.fetchone()) # (1,)
抛出问 …