#!/usr/bin/env python
#coding=utf-8
from DBUtils.PooledDB import PooledDB
import MySQLdb as mysql
from utils import util
import traceback
import config
import sys
class DB():
def __init__(self):
self.host = config.db_host
self.name = config.db_name
self.user = config.db_user
self.passwd = config.db_passwd
self.pool = PooledDB(mysql, mincached=4, maxcached=10, host=self.host,db=self.name,user=self.user,passwd=self.passwd,setsession=['SET AUTOCOMMIT = 1'])
#連接數(shù)據(jù)庫(kù)
def connect_db(self):
self.db = self.pool.connection()
self.cur = self.db.cursor()
#關(guān)閉連接
def close_db(self):
self.cur.close()
self.db.close()
#執(zhí)行sql
def execute(self, sql):
self.connect_db()
return self.cur.execute(sql)
#獲取所有數(shù)據(jù)列表
def get_list(self,table,fields):
sql = "select %s from %s"% (",".join(fields),table)
try:
self.execute(sql)
result = self.cur.fetchall()
if result:
result = [dict((k,row[i]) for i, k in enumerate(fields)) for row in result]
else:
result = {}
return result;
except:
util.WriteLog('db').info("Execute '%s' error: %s" % (sql, traceback.format_exc()))
finally:
self.close_db()
#獲取某一條數(shù)據(jù),返回字典
def get_one(self,table,fields,where):
if isinstance(where, dict) and where:
conditions = []
for k,v in where.items():
conditions.append("%s='%s'" % (k, v))
sql = "select %s from %s where %s" % (",".join(fields),table,' AND '.join(conditions))
try:
self.execute(sql)
result = self.cur.fetchone()
if result:
result = dict((k, result[i])for i, k in enumerate(fields))
else:
result = {}
return result
except:
util.WriteLog('db').info("Execute '%s' error: %s" % (sql, traceback.format_exc()))
finally:
self.close_db()
#更新數(shù)據(jù)
def update(self,table,fields):
data = ",".join(["%s='%s'"%(k,v) for k,v in fields.items()])
sql = "update %s set %s where id=%s " % (table,data,fields["id"])
try:
return self.execute(sql)
except:
util.WriteLog('db').info("Execute '%s' error: %s" % (sql, traceback.format_exc()))
finally:
self.close_db()
#添加數(shù)據(jù)
def create(self,table,data):
fields,values = [],[]
for k, v in data.items():
fields.append(k)
values.append("'%s'" % v)
sql = "insert into %s (%s) values (%s)" % (table,",".join(fields),",".join(values))
try:
return self.execute(sql)
except:
util.WriteLog('db').info("Execute '%s' error: %s" % (sql, traceback.format_exc()))
finally:
self.close_db()
#刪除數(shù)據(jù)
def delete(self,table,where):
if isinstance(where, dict) and where:
conditions = []
for k,v in where.items():
conditions.append("%s='%s'" % (k, v))
sql = "delete from %s where %s" % (table,' AND '.join(conditions))
try:
return self.execute(sql)
except:
util.WriteLog('db').info("Execute '%s' error: %s" % (sql, traceback.format_exc()))
finally:
self.close_db()
python mysql連接池 類
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
- 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來狐赡,“玉大人撞鹉,你說我怎么就攤上這事。” “怎么了鸟雏?”我有些...
- 文/不壞的土叔 我叫張陵享郊,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我孝鹊,道長(zhǎng)炊琉,這世上最難降的妖魔是什么? 我笑而不...
- 正文 為了忘掉前任又活,我火速辦了婚禮苔咪,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘柳骄。我一直安慰自己团赏,他們只是感情好,可當(dāng)我...
- 文/花漫 我一把揭開白布耐薯。 她就那樣靜靜地躺著舔清,像睡著了一般。 火紅的嫁衣襯著肌膚如雪可柿。 梳的紋絲不亂的頭發(fā)上鸠踪,一...
- 文/蒼蘭香墨 我猛地睜開眼痢虹,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼被去!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起奖唯,我...
- 序言:老撾萬榮一對(duì)情侶失蹤惨缆,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后丰捷,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體坯墨,經(jīng)...
- 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
- 正文 我和宋清朗相戀三年病往,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了捣染。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
- 正文 年R本政府宣布扒磁,位于F島的核電站,受9級(jí)特大地震影響示损,放射性物質(zhì)發(fā)生泄漏渗磅。R本人自食惡果不足惜,卻給世界環(huán)境...
- 文/蒙蒙 一检访、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧仔掸,春花似錦脆贵、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至负懦,卻和暖如春筒捺,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背纸厉。 一陣腳步聲響...
- 正文 我出身青樓肯尺,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親躯枢。 傳聞我的和親對(duì)象是個(gè)殘疾皇子则吟,可洞房花燭夜當(dāng)晚...
推薦閱讀更多精彩內(nèi)容
- import mysql.connector.poolingMYSQL_HOST = 'localhost'MYS...
- 安裝mysql模塊 參考Python連接MySQL數(shù)據(jù)庫(kù) 下載DBUtilsPython Package Inde...
- Python實(shí)現(xiàn)Mysql數(shù)據(jù)庫(kù)連接池 python連接Mysql數(shù)據(jù)庫(kù): python編程中可以使用MySQLd...
- 1.準(zhǔn)備工作 要想實(shí)現(xiàn)python與MySQL的連接,首先需要引入pymysql锄蹂,就這樣來實(shí)現(xiàn) 2.開始啦 1.創(chuàng)...
- 對(duì)于女人來說得糜,25歲以后的身體各項(xiàng)生理機(jī)能開始逐漸下降敬扛,特別是皮膚。皺紋掀亩、斑點(diǎn)舔哪、松弛等一系列肌膚問題慢慢顯現(xiàn)出來,...