赞
踩
文本sql的执行,需要使用sqlalchemy中的text()方法处理字符串,再执行语句
1、导入 from sqlalchemy import text
2、关键部分修改如下
– with engine.connect() as con:
# 先删除以日期为格式的表
con.execute(text(‘drop table if exists {}_ts;’.format(date)))
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。