首页 > 技术文章 > flask_sqlalchemy 调用存储过程

haker01 2021-11-28 09:39 原文

代码:通过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())

推荐阅读