Python基于多线程操作数据库相关问题分析
作者:CyborgLin 时间:2024-01-26 05:18:21
本文实例分析了Python多线程操作数据库相关问题。分享给大家供大家参考,具体如下:
python多线程并发操作数据库,会存在链接数据库超时、数据库连接丢失、数据库操作超时等问题。
解决方法:使用数据库连接池,并且每次操作都从数据库连接池获取数据库操作句柄,操作完关闭连接返回数据库连接池。
*连接数据库需要设置
charset = 'utf8', use_unicode = True
,不然会报中文乱码问题*网上说解决python多线程并发操作数据库问题,连接时使用
self.conn.ping(True)
(检查并保持长连接),但是我这边亲测无法解决,建议还是使用数据库连接池
python多线程代码:
import threading
class MyThread(threading.Thread):
def __init__(self, name, count, exec_object):
threading.Thread.__init__(self)
self.name = name
self.count = count
self.exec_object = exec_object
def run(self):
while self.count >= 0:
count = count - 1
self.exec_object.execFunc(count)
thread1 = MyThread('MyThread1', 3, ExecObject())
thread2 = MyThread('MyThread2', 5, ExecObject())
thread1.start()
thread2.start()
thread1.join() # join方法 执行完thread1的方法才继续主线程
thread2.join() # join方法 执行完thread2的方法才继续主线程
# 执行顺序 并发执行thread1 thread2,thread1和thread2执行完成才继续执行主线程
# ExecObject类是自定义数据库操作的业务逻辑类
#
########join方法详解########
thread1 = MyThread('MyThread1', 3, ExecObject())
thread2 = MyThread('MyThread2', 5, ExecObject())
thread1.start()
thread1.join() # join方法 执行完thread1的方法才继续主线程
thread2.start()
thread2.join() # join方法 执行完thread2的方法才继续主线程
# 执行顺序 先执行thread1,执行完thread1再执行thread2,执行完thread2才继续执行主线程
mysql数据库连接池代码:
import MySQLdb
from DBUtils.PooledDB import PooledDB
class MySQL:
host = 'localhost'
user = 'root'
port = 3306
pasword = ''
db = 'testDB'
charset = 'utf8'
pool = None
limit_count = 3 # 最低预启动数据库连接数量
def __init__(self):
self.pool = PooledDB(MySQLdb, self.limit_count, host = self.host, user = self.user, passwd = self.pasword, db = self.db,
port = self.port, charset = self.charset, use_unicode = True)
def select(self, sql):
conn = self.pool.connection()
cursor = conn.cursor()
cursor.execute(sql)
result = cursor.fetchall()
cursor.close()
conn.close()
return result
def insert(self, table, sql):
conn = self.pool.connection()
cursor = conn.cursor()
try:
cursor.execute(sql)
conn.commit()
return {'result':True, 'id':int(cursor.lastrowid)}
except Exception as err:
conn.rollback()
return {'result':False, 'err':err}
finally:
cursor.close()
conn.close()
希望本文所述对大家Python程序设计有所帮助。
来源:https://blog.csdn.net/mxdzchallpp/article/details/80411514
标签:Python,多线程,数据库
0
投稿
猜你喜欢
webpack动态加载与打包方式
2024-04-23 09:16:10
解决selenium模块利用performance获取network日志请求报错的问题(亲测有效)
2022-12-22 11:09:26
Python基本运算几何运算处理数字图像示例
2021-08-22 23:25:05
django 实现将本地图片存入数据库,并能显示在web上的示例
2024-01-21 14:39:33
python实用的快捷语法技巧大全
2022-12-11 11:33:35
免费手机号码归属地API查询接口和PHP使用实例分享
2023-10-31 08:06:37
给Python学习者的文件读写指南(含基础与进阶)
2021-04-26 12:05:40
Pytorch-LSTM输入输出参数方式
2021-02-22 18:49:28
MsSql 存储过程分页代码 [收集多篇]
2024-01-13 13:13:33
Pytorch 高效使用GPU的操作
2021-10-25 04:45:23
关于matplotlib及相关cmap参数的取值方式
2023-06-26 15:19:18
对python实时得到鼠标位置的示例讲解
2022-02-21 10:01:25
Python实现猜数字小游戏
2022-10-09 18:38:12
大容量SQL Server数据库迁移偏方
2011-05-05 08:18:00
免安转MySQL服务的启动与停止方法
2024-01-16 10:25:35
python zip,lambda,map函数代码实例
2023-08-25 05:04:49
encodeURIComponent用法UrlEncode与URLEncode.encode()
2009-05-11 12:40:00
python 删除指定时间间隔之前的文件实例
2023-07-19 17:58:38
如何在Python项目中引入日志
2023-01-25 15:10:53
Python 列表(list)的常用方法
2022-05-04 19:05:20