Python 个使用 pymysql 1.0.2 版本 无法使用 execute 函数
Python 个使用 pymysql 1.0.2 版本 无法使用 execute 函数环境:Python 3.8 pymysql1.0.2 版本代码如下:import pymysqlcon = pymysql.connect(host=host,
port=port,
user=user,
password=password
charset='utf8')
sql= 'SELECT * FROM * LIMIT 5;'
with con as cur:
cur.execute(sql)
res = cur.fetchall()
cur.close()
print(res)
确认数据库能正常连接,与 SQL 查询语句正常,运行时错误如下:AttributeError: 'Connection' object has no attribute 'execute'
https://www.cnblogs.com/liubinsh/p/7568423.html 参考下这个 是其他方式执行吧? 参考下这个链接把https://www.cnblogs.com/liubinsh/p/7568423.html https://www.cnblogs.com/liubinsh/p/7568423.html 参考下这篇文章
页:
[1]