flask_sqlalchemy 调用存储过程
Posted 低调的猫~~
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flask_sqlalchemy 调用存储过程相关的知识,希望对你有一定的参考价值。
代码:通过cursor方式调用
from flask_sqlalchemy import SQLAlchemy
db = SQLAlchemy()
connection = db.engine.raw_connection()
cursor = connection.cursor()
cursor.callproc(\'sp_getUsers\')
for result in cursor.stored_results():
print(result.fetchall())
本文来自博客园,作者:决明子~,转载请注明原文链接:https://www.cnblogs.com/haker01/p/15614326.html
以上是关于flask_sqlalchemy 调用存储过程的主要内容,如果未能解决你的问题,请参考以下文章