Ai
2 Star 0 Fork 1

jackfrued/python2004

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
example07.py 847 Bytes
一键复制 编辑 原始数据 按行查看 历史
jackfrued 提交于 2020-11-20 10:58 +08:00 . SQL批处理操作
"""
更新数据
"""
import MySQLdb
no = int(input('编号:'))
location = input('所在地:')
# 1. 创建连接对象
conn = MySQLdb.connect(host='47.104.31.138', port=3306,
user='root', password='Luohao.618',
database='hrs', charset='utf8')
try:
# 2. 获取游标对象
with conn.cursor() as cursor:
# 3. 通过游标对象向数据库发出SQL语句获取执行结果
affected_rows = cursor.execute(
'update tb_dept set dloc=%s where dno=%s',
(location, no)
)
if affected_rows == 1:
print('更新部门成功')
# 4. 提交事务
conn.commit()
except MySQLdb.MySQLError as err:
print(err)
# 4. 回滚事务
conn.rollback()
finally:
# 5. 关闭数据库连接(释放资源)
conn.close()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/jackfrued/python2004.git
git@gitee.com:jackfrued/python2004.git
jackfrued
python2004
python2004
master

搜索帮助