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

相关推荐
傻啦嘿哟12 分钟前
Django缓存机制详解:从配置到实战应用
python·缓存·django
bin915330 分钟前
解锁Java开发新姿势:飞算JavaAI深度探秘 #飞算JavaAl炫技赛 #Java开发
java·人工智能·python·java开发·飞算javaai·javaai·飞算javaal炫技赛
海哥编程1 小时前
python使用python-docx自动化操作word
python·自动化·word
Circ.1 小时前
重新打包镜像
python
java1234_小锋3 小时前
一周学会Matplotlib3 Python 数据可视化-坐标轴 (Axis)
开发语言·python·信息可视化·matplotlib·matplotlib3
奶油话梅糖3 小时前
【网络自动化】利用Python脚本与计划任务,实现H3C/HPE设备配置无人值守备份
网络·python·自动化
无影无踪的青蛙3 小时前
macOS用户崩溃瞬间:当我发现电脑里有8个Python版本…
python
十里桃花ღ3 小时前
Python 图像处理库Pillow
python
OAK中国_官方4 小时前
使用OAK相机实现智能物料检测与ABB机械臂抓取
人工智能·python·边缘计算·深度相机
amazinging4 小时前
北京-4年功能测试2年空窗-报培训班学测开-第七十一天-面试第二天
python·学习·面试