Ai
2 Star 0 Fork 1

jackfrued/python2004

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
example03.py 1002 Bytes
一键复制 编辑 原始数据 按行查看 历史
jackfrued 提交于 2020-11-27 15:20 +08:00 . 添加functools模块的例子
"""
pip config set global.index-url https://pypi.douban.com/simple
pip install mysqlclient
pip install pymysql
pip uninstall -y pymysql
pip list
pip freeze > requirements.txt
pip install -r requirements.txt
pip check
SQL注射攻击(SQL Injection)
"""
import MySQLdb
from utils import connect
no = int(input('编号:'))
name = input('名称:')
location = input('所在地:')
# 1. 创建连接对象
conn = connect(database='hrs')
try:
# 2. 获取游标对象
with conn.cursor() as cursor:
# 3. 通过游标对象向数据库发出SQL语句获取执行结果
affected_rows = cursor.execute(
'insert into tb_dept values (%s, %s, %s)',
(no, name, location)
)
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

搜索帮助