python实现和mysql一起实现数据库的增删改查

要在 Python 中使用 MySQL 数据库进行增删改查(CRUD)操作,你可以使用 `pymysql` 库。以下是一些示例代码,展示如何实现这些操作。

首先,确保你已经安装了 `pymysql`。如果没有安装,可以通过以下命令安装:

```bash

pip install pymysql

```

1. 连接数据库

```python

import pymysql

连接数据库

conn = pymysql.connect(host='localhost', user='your_username', password='your_password', db='your_db', charset='utf8mb4')

```

2. 创建(Create)

```python

创建游标对象

cursor = conn.cursor()

插入数据

sql = "INSERT INTO patient (name, age, time) VALUES (%s, %s, %s)"

try:

cursor.execute(sql, ('John Doe', 30, '2024-07-27 10:00:00'))

conn.commit() # 提交事务

except pymysql.Error as e:

print(e)

conn.rollback() # 回滚事务

关闭游标和连接

cursor.close()

conn.close()

```

3. 读取(Read)

```python

创建游标对象

cursor = conn.cursor(pymysql.cursors.DictCursor)

查询所有数据

sql = "SELECT * FROM patient"

try:

cursor.execute(sql)

results = cursor.fetchall()

for row in results:

print(row)

except pymysql.Error as e:

print(e)

关闭游标和连接

cursor.close()

conn.close()

```

4. 更新(Update)

```python

创建游标对象

cursor = conn.cursor()

更新数据

sql = "UPDATE patient SET age = %s WHERE name = %s"

try:

cursor.execute(sql, (31, 'John Doe'))

conn.commit() # 提交事务

except pymysql.Error as e:

print(e)

conn.rollback() # 回滚事务

关闭游标和连接

cursor.close()

conn.close()

```

5. 删除(Delete)

```python

创建游标对象

cursor = conn.cursor()

删除数据

sql = "DELETE FROM patient WHERE name = %s"

try:

cursor.execute(sql, ('John Doe',))

conn.commit() # 提交事务

except pymysql.Error as e:

print(e)

conn.rollback() # 回滚事务

关闭游标和连接

cursor.close()

conn.close()

```

完整示例

```python

import pymysql

连接数据库

conn = pymysql.connect(host='localhost', user='your_username', password='your_password', db='your_db', charset='utf8mb4')

创建游标对象

cursor = conn.cursor()

插入数据

sql_insert = "INSERT INTO patient (name, age, time) VALUES (%s, %s, %s)"

try:

cursor.execute(sql_insert, ('John Doe', 30, '2024-07-27 10:00:00'))

conn.commit()

except pymysql.Error as e:

print(e)

conn.rollback()

查询数据

sql_select = "SELECT * FROM patient"

try:

cursor.execute(sql_select)

results = cursor.fetchall()

for row in results:

print(row)

except pymysql.Error as e:

print(e)

更新数据

sql_update = "UPDATE patient SET age = %s WHERE name = %s"

try:

cursor.execute(sql_update, (31, 'John Doe'))

conn.commit()

except pymysql.Error as e:

print(e)

conn.rollback()

删除数据

sql_delete = "DELETE FROM patient WHERE name = %s"

try:

cursor.execute(sql_delete, ('John Doe',))

conn.commit()

except pymysql.Error as e:

print(e)

conn.rollback()

关闭游标和连接

cursor.close()

conn.close()

```

确保替换 `your_username`, `your_password`, `your_db` 为你的 MySQL 数据库的实际用户名、密码和数据库名。同时,确保你的数据库服务器正在运行,并且你有足够的权限执行这些操作。

相关推荐
尘浮生几秒前
Java项目实战II基于微信小程序的校运会管理系统(开发文档+数据库+源码)
java·开发语言·数据库·微信小程序·小程序·maven·intellij-idea
偶尔。5352 分钟前
什么是事务?事务有哪些特性?
数据库·oracle
安迁岚4 分钟前
【SQL Server】华中农业大学空间数据库实验报告 实验六 视图
数据库·sql·mysql·oracle·实验报告
xoxo-Rachel13 分钟前
(超级详细!!!)解决“com.mysql.jdbc.Driver is deprecated”警告:详解与优化
java·数据库·mysql
JH30731 小时前
Oracle与MySQL中CONCAT()函数的使用差异
数据库·mysql·oracle
蓝染-惣右介1 小时前
【MyBatisPlus·最新教程】包含多个改造案例,常用注解、条件构造器、代码生成、静态工具、类型处理器、分页插件、自动填充字段
java·数据库·tomcat·mybatis
冷心笑看丽美人1 小时前
Spring框架特性及包下载(Java EE 学习笔记04)
数据库
武子康2 小时前
Java-07 深入浅出 MyBatis - 一对多模型 SqlMapConfig 与 Mapper 详细讲解测试
java·开发语言·数据库·sql·mybatis·springboot
代码吐槽菌2 小时前
基于SSM的毕业论文管理系统【附源码】
java·开发语言·数据库·后端·ssm
路有瑶台2 小时前
MySQL数据库学习(持续更新ing)
数据库·学习·mysql