python基础之操作MySQL数据库

工作需要操作MySQL数据库,使用pymysql库,有些操作上不习惯的地方做了些修改。比如查询的时候结果不能按字段名读取数据等。以下是代码。

首先是引入库、引入random和string主要是为了生成id。

复制代码
import pymysql
import random
import string

创建数据库链接对象

复制代码
def mysqlconnect():
    # 连接数据库
    host = '192.168.1.1
    port = 3306
    user = 'root'
    password = 'root'
    database = 'ceshi_table'
    conn = pymysql.connect(host=host, port=port, user=user, password=password, database=database)
    cursor = conn.cursor()
    return cursor,conn

一、查询方法

复制代码
def selectdata(sql_query):
    cursor,conn = mysqlconnect()

    # 执行SQL查询语句
    cursor.execute(sql_query)

    # 获取查询结果
    results = cursor.fetchall()

    # 查询
    column_names = [desc[0] for desc in cursor.description]
    data = []
    for row in results:
        name_value = {}
        for column_name in column_names:
            name_value[column_name] = row[column_names.index(column_name)]
        data.append(name_value)

    # 关闭游标和连接
    cursor.close()
    conn.close()

    if len(data) == 1:
        return data[0]
    else:
        return data

调用

复制代码
sql_query = "SELECT * FROM data_table"
results = selectdata(sql_query)
print(results)

二、添加数据方法

复制代码
def insertdata(insertsql,values):
    cursor,conn = mysqlconnect()
    try:
        if type(values) == list:
            cursor.executemany(insertsql, values)

        if type(values) == tuple:
            cursor.execute(insertsql, values)

        conn.commit()
    except Exception as e:
        print(f"数据插入失败:{e}")
        conn.rollback()

    # 关闭游标和连接
    cursor.close()
    conn.close()

调用

复制代码
insertsql = "insert into data_table (id,warning_type,customer,license,tel) values (%s,%s,%s,%s,%s)"
values = [('123133', '123123','城区据','第一市场队'),
('123125', '123123','城区据','第一市场队'),
('123178', '123123','城区据','第一市场队')]
# values = ('123127', '123123','城区据','第一市场队')
insertdata(insertsql,values)

三、更新数据方法

复制代码
def updatedata(update_sql,values):
    cursor,conn = mysqlconnect()
    try:
        cursor.execute(update_sql, values)
        conn.commit()
    except Exception as e:
        print(f"数据更新失败:{e}")
        conn.rollback()

    # 关闭游标和连接
    cursor.close()
    conn.close()

调用

复制代码
update_sql = "UPDATE data_table SET area_name=%s,squadron_code=%s WHERE id=%s"
values = ('new_value1', 'condition_value','123123')
updatedata(update_sql,values)

四、删除数据方法

复制代码
def deledata(delete_sql,delevalue):
    cursor, conn = mysqlconnect()
    try:
        cursor.execute(delete_sql, delevalue)
        conn.commit()
    except Exception as e:
        print(f"数据删除失败:{e}")
        conn.rollback()

    # 关闭游标和连接
    cursor.close()
    conn.close()

调用

复制代码
delete_sql = "DELETE FROM data_table WHERE id=%s"
values = ('123123')
deledata(delete_sql,values)

五、最后还有个生成随机字符串id的方法

复制代码
def generate_random_string(length):
    characters = string.ascii_letters + string.digits  # 包含所有大小写字母和数字
    random_string = ''.join(random.choice(characters) for _ in range(length))
    return random_string

ok,完毕!!

相关推荐
Python图像识别1 小时前
75_基于深度学习的咖啡叶片病害检测系统(yolo11、yolov8、yolov5+UI界面+Python项目源码+模型+标注好的数据集)
python·深度学习·yolo
闲人编程1 小时前
Python游戏开发入门:Pygame实战
开发语言·python·游戏·pygame·毕设·codecapsule
雍凉明月夜2 小时前
人工智能学习中深度学习之python基础之 类
python·学习
Geo_V2 小时前
OpenAI 大模型 API 使用示例
python·chatgpt·openai·大模型应用·llm 开发
Hello_WOAIAI2 小时前
2.4 python装饰器在 Web 框架和测试中的实战应用
开发语言·前端·python
百锦再2 小时前
第1章 Rust语言概述
java·开发语言·人工智能·python·rust·go·1024程序员节
tokepson2 小时前
chatgpt-to-md优化并重新复习
python·ai·技术·pypi·记录
Victory_orsh3 小时前
“自然搞懂”深度学习(基于Pytorch架构)——010203
人工智能·pytorch·python·深度学习·神经网络·算法·机器学习
java1234_小锋3 小时前
PyTorch2 Python深度学习 - 模型保存与加载
开发语言·python·深度学习·pytorch2
Python图像识别3 小时前
74_基于深度学习的垃圾桶垃圾溢出检测系统(yolo11、yolov8、yolov5+UI界面+Python项目源码+模型+标注好的数据集)
python·深度学习·yolo