Python数据操作方法封装类实例
本文实例讲述了Python数据操作方法封装类。分享给大家供大家参考,具体如下:
工作中经常会用到数据的插叙、单条数据插入和批量数据插入,以下是本人封装的一个类,推荐给各位:
#!/usr/bin/envpython
#-*-coding:utf-8-*-
#Author:Eric.yue
importlogging
importMySQLdb
class_MySQL(object):
def__init__(self,host,port,user,passwd,db):
self.conn=MySQLdb.connect(
host=host,
port=port,
user=user,
passwd=passwd,
db=db,
charset='utf8'
)
defget_cursor(self):
returnself.conn.cursor()
defquery(self,sql):
cursor=self.get_cursor()
try:
cursor.execute(sql,None)
result=cursor.fetchall()
exceptException,e:
logging.error("mysqlqueryerror:%s",e)
returnNone
finally:
cursor.close()
returnresult
defexecute(self,sql,param=None):
cursor=self.get_cursor()
try:
cursor.execute(sql,param)
self.conn.commit()
affected_row=cursor.rowcount
exceptException,e:
logging.error("mysqlexecuteerror:%s",e)
return0
finally:
cursor.close()
returnaffected_row
defexecutemany(self,sql,params=None):
cursor=self.get_cursor()
try:
cursor.executemany(sql,params)
self.conn.commit()
affected_rows=cursor.rowcount
exceptException,e:
logging.error("mysqlexecutemanyerror:%s",e)
return0
finally:
cursor.close()
returnaffected_rows
defclose(self):
try:
self.conn.close()
except:
pass
def__del__(self):
self.close()
mysql=_MySQL('127.0.0.1',3306,'root','123456','test')
defcreate_table():
table="""
CREATETABLEIFNOTEXISTS`watchdog`(
`id`int(11)NOTNULLAUTO_INCREMENTPRIMARYKEY,
`name`varchar(100),
`price`int(11)NOTNULLDEFAULT0
)ENGINE=InnoDBcharset=utf8;
"""
printmysql.execute(table)
definsert_data():
params=[('dog_%d'%i,i)foriinxrange(12)]
sql="INSERTINTO`watchdog`(`name`,`price`)VALUES(%s,%s);"
printmysql.executemany(sql,params)
if__name__=='__main__':
create_table()
insert_data()
更多关于Python相关内容感兴趣的读者可查看本站专题:《Python常见数据库操作技巧汇总》、《Python编码操作技巧总结》、《Python数据结构与算法教程》、《PythonSocket编程技巧总结》、《Python函数使用技巧总结》、《Python字符串操作技巧汇总》、《Python入门与进阶经典教程》及《Python文件与目录操作技巧汇总》
希望本文所述对大家Python程序设计有所帮助。