python通过数据库连接池实现mysql数据库增删改查
import pymysql
from DBUtils.PooledDB import PooledDB class SQLHandler(object):
def __init__(self, host, port, db_username, db_password, db_name):
# pip install --default-timeout=100 dbutils
self.pool = PooledDB(
# 使用链接数据库的模块import pymysql
creator=pymysql,
# 连接池允许的最大连接数,0和None表示不限制连接数
maxconnections=6,
# 初始化时,链接池中至少创建的空闲的链接,0表示不创建
mincached=2,
# 链接池中最多闲置的链接,0和None不限制
maxcached=5,
# 链接池中最多共享的链接数量,0和None表示全部共享。
# 因为pymysql和MySQLdb等模块的 threadsafety都为1,
# 所有值无论设置为多少,maxcached永远为0,所以永远是所有链接都共享。
maxshared=3,
# 连接池中如果没有可用连接后,是否阻塞等待。True,等待;False,不等待然后报错
blocking=True,
# 一个链接最多被重复使用的次数,None表示无限制
maxusage=None,
# 开始会话前执行的命令列表。如:["set datestyle to ...", "set time zone ..."]
setsession=[],
# ping MySQL服务端,检查是否服务可用。
# 如:0 = None = never, 1 = default = whenever it is requested,
# 2 = when a cursor is created, 4 = when a query is executed, 7 = always
ping=0, # 数据库信息
host=host,
port=int(port),
user=db_username,
password=db_password,
database=db_name,
charset='utf8'
) def create_conn_cursor(self):
# 创建连接
conn = self.pool.connection()
# 创建游标
cursor = conn.cursor(pymysql.cursors.DictCursor)
# 返回conn, cursor
return conn, cursor def fetch_one(self, sql, args):
conn, cursor = self.create_conn_cursor()
cursor.execute(sql, args)
result = cursor.fetchone()
cursor.close()
conn.close()
return result def fetch_many(self, sql, args):
conn, cursor = self.create_conn_cursor()
cursor.execute(sql)
result = cursor.fetchmany(args)
cursor.close()
conn.close()
return result def fetch_all(self, sql, args):
conn, cursor = self.create_conn_cursor()
cursor.execute(sql, args)
result = cursor.fetchall()
cursor.close()
conn.close()
return result def insert_one(self, sql, args):
conn, cursor = self.create_conn_cursor()
res = cursor.execute(sql, args)
conn.commit()
print(res)
conn.close()
return res def insert_many(self, sql, args):
conn, cursor = self.create_conn_cursor()
res = cursor.executemany(sql, args)
conn.commit()
print(res)
conn.close()
return res def update(self, sql, args):
conn, cursor = self.create_conn_cursor()
res = cursor.execute(sql, args)
conn.commit()
print(res)
conn.close()
return res def delete(self, sql, args):
conn, cursor = self.create_conn_cursor()
res = cursor.execute(sql, args)
conn.commit()
print(res)
conn.close()
return res sqlhelper = SQLHandler("127.0.0.1", 3306, "root", "root", "py")
## 查询
# 指定列名查询
# ret = sqlhelper.fetch_all("select * from user333 where id=%s",(2))
# ret = sqlhelper.fetch_all("select * from user333 where name=%s",('apollo'))
# 显示查询结果第一条
# ret = sqlhelper.fetch_one("select * from user333",None)
# 显示查询结果前两条
# ret = sqlhelper.fetch_many("select * from user333",(2))
# 显示查询结果全部
# ret = sqlhelper.fetch_all("select * from user333", None)
# for (index, item) in enumerate(ret, 1):
# print(index, item) ## 插入
# 插入一条数据
# 方式1:
# ret = sqlhelper.insert_one("insert into user333 VALUES (%s,%s,%s)",(10,"litch",56))
# 方式2:
# ret = sqlhelper.insert_one("insert into user333 (name,age)VALUES (%s,%s)",("banana",12))
# 插入多条数据
data = [
('apollo88', ''),
('jack88', ''),
('merry88', '')
]
sql = 'insert into user444(name,age) values(%s,%s);'
ret = sqlhelper.insert_many("insert into user333(name,age) values(%s,%s);",data) ## 更新
# ret = sqlhelper.update("update user333 SET name=%s WHERE id=%s",("Smith",1)) ## 删除
# ret = sqlhelper.delete("delete from user333 where name=%s;",[("jack88")])
# print(ret)
```
# 插入多条数据补充:表名也可以作为变量传入
data = [(3, 'apollo3', '232'), (24, 'jack4', '264')]
table_name = "test"
sql = "insert into {0} values(%s,%s,%s);".format(table_name)
db3.insert_many(sql , data)
```
python通过数据库连接池实现mysql数据库增删改查的更多相关文章
- python操作mysql数据库增删改查的dbutils实例
python操作mysql数据库增删改查的dbutils实例 # 数据库配置文件 # cat gconf.py #encoding=utf-8 import json # json里面的字典不能用单引 ...
- Asp.Net操作MySql数据库增删改查
Asp.Net操作MySql数据库增删改查,话不多说直接步入正题.git源码地址:https://git.oschina.net/gxiaopan/NetMySql.git 1.安装MySQL数据库 ...
- Java连接MySQL数据库增删改查通用方法
版权声明:本文为博主原创文章,未经博主允许不得转载. Java连接MySQL数据库增删改查通用方法 运行环境:eclipse+MySQL 以前我们Java连接MySQL数据库都是一个数据库写一个类,类 ...
- MySQL数据库(增删改查语句)
MySQL数据库(增删改查语句)一.登录数据库:----> mysql -uroot -proot;(对应用户名和密码)二.SQL语句: 数据定义语言DDL 用来定义数据库.表.列,关 ...
- Python实现mysql数据库增删改查
利用python操作mysql数据库用法简单,环境配置容易,本文将实现对库增.删.改.查的简易封装! 1. 环境配置 安装第三方包 ,导入模块 mysql.connector pip inst ...
- python2.7入门---操作mysql数据库增删改查
Python 标准数据库接口为 Python DB-API,Python DB-API为开发人员提供了数据库应用编程接口.Python 数据库接口支持非常多的数据库,你可以选择适合你项目的数据库: G ...
- jsp-2 简单的servlet连接mysql数据库 增删改查
连接mysql数据库的操作 有增删改查 用的包有 commons-lang3-3.5 mysql-connector-java-5.1.40-bin 但是实际上也就是 数据查询和数据处理两种 所以对数 ...
- 安卓版php服务器的mysql数据库增删改查简单案例
界面: index.php文件: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "h ...
- MySQL数据库增删改查等常用命令介绍
MySQL可以说是最常用的小型数据库,加上现在越来越流行的分布式架构,哪怕是一般的中大型项目也可以用MySQL来进行部署. 数据库的操作最常用的就是增删改查,还有一些切换数据库等操作.以下命令不加说明 ...
随机推荐
- 未能加载文件或程序集“Newtonsoft.Json, Version=4.5.0.0, Culture=neutral,解决
升级json.net版本时候报的错误 只需要解决.net和json版本冲突即可 <runtime> <assemblyBinding xmlns="urn:schemas- ...
- pandas 绘图与滑窗
#import nessary library before start import pandas as pd import numpy as np import matplotlib.pyplot ...
- android 静态和动态设置 Receiver的 android:enabled值
0x 01 前提约束: 0x001 静态检查:指用action限定Intent,并使用包管理器的queryBroadCastReceivers方法,在flags字段置为0时查找ResolveInfo, ...
- Android内存优化大全(中)
转载请注明本文出自大苞米的博客(http://blog.csdn.net/a396901990),谢谢支持! 写在最前: 本文的思路主要借鉴了2014年AnDevCon开发者大会的一个演讲PPT,加上 ...
- unity, 内存profile,ImageEffects Temp和Unity GI SystemTex RGBM
最近用unity的Profiler对公司项目进行内存profile,发现一些问题,记录一下. 用Memory Area的Detailed View,用法见:http://docs.unity3d.co ...
- Linux Ctrl+z bg fg jobs命令使用
一.暂停前台运行时间长的程序 使用Ctrl + z然后可以看到系统提示: []+ Stopped /home/test/demo.sh 二.bg命令 将程序放到后台处理 bg %jobnumber ...
- Atitit .c#的未来新特性计划草案
Atitit .c#的未来新特性计划草案 1. C#的未来:追踪空引用1 1.1. 2. 变量命名空间1 1.2. 10. 项目引用Native dll2 1.3. 10. 项目引用Native dl ...
- websocket echo test
http://www.websocket.org/echo.html .net websocket server http://superwebsocket.codeplex.com/ http:// ...
- javacript计时
简单的计时: var t=setTimeout("alert('5 秒!')",5000) 无限计时: var c=0 var t function timedCount() { ...
- Yarn源码分析之MapReduce作业中任务Task调度整体流程(一)
v2版本的MapReduce作业中,作业JOB_SETUP_COMPLETED事件的发生,即作业SETUP阶段完成事件,会触发作业由SETUP状态转换到RUNNING状态,而作业状态转换中涉及作业信息 ...