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,完毕!!

相关推荐
生骨大头菜36 分钟前
使用python实现相似图片搜索功能,并接入springcloud
开发语言·python·spring cloud·微服务
绝不收费—免费看不了了联系我37 分钟前
Fastapi的单进程响应问题 和 解决方法
开发语言·后端·python·fastapi
xqqxqxxq1 小时前
背单词软件技术笔记(V2.0扩展版)
java·笔记·python
最晚的py1 小时前
Python抓取ZLibrary元数据
爬虫·python
咖啡续命又一天1 小时前
Trae CN IDE 中 Python 开发的具体流程和配置总结
开发语言·ide·python·ai编程
IT·小灰灰2 小时前
告别“翻墙“烦恼:DMXAPI让Gemini-3-pro-thinking调用快如闪电
网络·人工智能·python·深度学习·云计算
山海青风3 小时前
语音合成 - 用 Python 合成藏语三大方言语音
开发语言·python·音视频
mikejahn3 小时前
爬取CECS网站征求意见栏目的最新信息
python
占疏3 小时前
dify API访问工作流/聊天
开发语言·数据库·python
aningxiaoxixi3 小时前
TTS 之 PYTHON库 pyttsx3
开发语言·python·语音识别