1 Star 0 Fork 0

zhaoshunxin/python2004

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
examlie03.py 638 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhaosx 提交于 2020-11-20 11:21 . 1234567899
import MySQLdb
no = int(input('编号:'))
name = input('名称:')
location = input('所在地:')
conn = MySQLdb.Connect(host='47.108.143.29', port=3306,
user='root',password='Zhaoshunxin.618',
database='hrs',charset='utf8mb4')
try:
with conn.cursor() as cursor:
affected_rows = cursor.execute(
f'insert into tb_dept values (%s,%s,%s)',
( no,name,location)
)
if affected_rows == 1:
print(cursor.fetchall())
conn.commit()
except MySQLdb.MySQLError as err:
print(err)
conn.rollback()
finally:
conn.close()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/zhaoshunxin/python2004.git
git@gitee.com:zhaoshunxin/python2004.git
zhaoshunxin
python2004
python2004
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385