1 Star 0 Fork 0

Solitary pursuit of defeat/code_repository

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
案例03.py 885 Bytes
一键复制 编辑 原始数据 按行查看 历史
Solitary pursuit of defeat 提交于 2023-05-24 11:51 . 11
#对数据库进行增删操作
import pymysql #导入pymysql
conn=pymysql.connect(host='192.168.52.129', db='wa_test', user='root', passwd='123456') #连接数据库(把数据库服务器上的某个具体数据库拷贝到客户机的内存中<内存起名字为数据库连接对象>)
cursor=conn.cursor() #创建游标(在内存的连接对象中创建空表,将来存数据)
sql="delete from users where id=10000"
cursor.execute(sql) #写一条sql语句,执行一下
sql="insert into users(id, username, password) values(10000, 'ceshi', md5('123456'))" #指定sql语句(初始化数据库使用增删改),必须是字符串类型
cursor.execute(sql) #执行sql语句(增删改的数据存入游标中)
conn.commit() #提交数据(保存客户机内存中游标里面的数据到数据库服务器)
conn.close() #关闭或断开数据库连接(释放客户机内存)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/yuanliangliang_repotory/cede_repotory.git
git@gitee.com:yuanliangliang_repotory/cede_repotory.git
yuanliangliang_repotory
cede_repotory
code_repository
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385