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来进行部署. 数据库的操作最常用的就是增删改查,还有一些切换数据库等操作.以下命令不加说明 ...
随机推荐
- 带圈圈的数字1~50,求50以上,不要word的
①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳㉑㉒㉓㉔㉕㉖㉗㉘㉙㉚㉛㉜㉝㉞㉟㊱㊲㊳㊴㊵㊶㊷㊸㊹㊺㊻㊼㊽㊾㊿
- #1214 - The used table type doesn't support FULLTEXT indexes解决办法
#1214 - The used table type doesn't support FULLTEXT indexes报此错误的原因是:InnoDB不支持FULLTEXT类型的索引. 网上的解决办法 ...
- Android应用中使用百度地图API之POI(三)
先看执行后的图吧: watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvbWFqaWFuamll/font/5a6L5L2T/fontsize/400/fill/ ...
- Centos中配置环境变量
以Java的开发环境Jdk为例. 将jdk-9.0.1放置在/usr/local下(UNIX规范),然后我们将jdk配置到环境变量中去. $ mv jdk- /usr/local $ vim /etc ...
- linux navicat 过期 解决办法
:~$ cd .navicat:~/.navicat$ rm *.reg:~/.navicat$ rm .update-timestamp:~/.navicat$ rm navicat.crontab ...
- Atitit.播放系统规划新版本 v4 q18 and 最近版本回顾
Atitit.播放系统规划新版本 v4 q18 and 最近版本回顾 1 版本12 (ing)4 1.1 无映射nas系统..4 1.2 图片简介搜刮其4 1.3 12.8. 电影图片增加png, ...
- WCF 动态调用(1)
很多时候,服务地址都不止一个的,这个时候就要动态去配置地址.配置Web.config,很麻烦 下面就看看怎样实现动态调用WCF. using System; using System.Collecti ...
- CentOS设置sendmail发件人,让sendmail不显示通过XXX代发
0.有一个十分快速的方法 命令:hostname itzhanzhang.com,但是重启后会失效,于是请接着往下看一劳永逸的方法: 1.设置你的主机名 默认的主机名是类似于“VM_24_76_cen ...
- 基于C#的超市收银管理系统
基于C#的超市收银管理系统 前序 一直在忙学习Qt有关的知识,非常有幸这学期学习了C#.让我也感觉到了一丝欣慰,欣慰的是感觉好上手啊,学了几天顿时懂了.好多控件的使用方法好类似,尽管平时上课没有怎么认 ...
- 一个奇怪的EL表达式错误
下图是在Struts2的action中写的一个方法 JSP页面代码如下: 在页面访问如下路径:http://localhost:8088/maven_ssh/cust_getCustList 目前推测 ...