首页 运维知识 关于python sql语句封装连接mysql

关于python sql语句封装连接mysql

进行了代码优化,欢迎评审 #!/usr/bin/python # -*- coding:utf-8 -*- import logging logging.basicConfig(l…

进行了代码优化,欢迎评审
#!/usr/bin/python
# -*- coding:utf-8 -*-
import logging
logging.basicConfig(level=logging.INFO)
class baselib(json.JSONEncoder):
def __init__(self):
self.conn = mysql.connector.connect(host=’192.1.1.1′,port=3306,user=’root’,passwd=’123456′,db=’user’,charset=”utf8″)
def query(self,sql):
try:
self.cursor = self.conn.cursor(dictionary=True) #返回数据为dict
data = self.cursor.execute(sql)
data = self.cursor.fetchone()
data = json.dumps(data,cls=CJsonEncoder).decode(“unicode-escape”)
except mysql.connector.Error as e:
print (‘Error : {}’.format(e))
finally:
print ‘Connect wemedia closed in finally’
return data
def GetBitradeSqlAll(self,sql):
try:
self.cursor = self.conn.cursor()
data = self.cursor.execute(sql)
data = self.cursor.fetchall()
data = json.dumps(data,cls=CJsonEncoder).decode(“unicode-escape”)
except mysql.connector.Error as e:
print (‘Error : {}’.format(e))
finally:
print ‘Connect wemedia closed in finally’
return data
import mysql.connector
class mysqltest(object):
def __init__(self):
pass
def selectmysql(self,sql):
global conn,cursor
conn = mysql.connector.connect(host=’127.0.0.1′,port=3306,user=’test’,passwd=’root@test’,db=’testuser’, use_unicode=True)
try:
cursor = conn.cursor()
# 插入一行记录,注意MySQL的占位符是%s:
data = cursor.execute(sql)
# 查询单数据时用
#”%s” ‘% index
wmid = cursor.fetchone()
# wmid = cursor.fetchall() 查询多数据时使用
except mysql.connector.Error as e:
print (‘Error : {}’.format(e))
finally:
print ‘Connect wemedia closed in finally’
return wmid
if __name__ == ‘__main__’:
w= mysqltest()
sql = ”’select wm_id from wm_owner_info where wm_owner_info.id =59129”’
data = w.selectmysql(sql)
print data
conn.commit()
cursor.close
conn.close
以下为历史版本
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import mysql.connector
class connectMysql(object):
  def ExecNonQuery(sql):
    conn = MySQLdb.connect(host=’xxxx’,user=’xxxx’,passwd=’xxxx’,db=’xxxx’)
    cursor = conn.cursor()
    cursor.execute(sql)
    res = cursor.fetchone()
    print res
    cursor.close
    conn.close
#!/usr/bin/python
# -*- coding: UTF-8 -*-
from connectMysql import connectSQl
class diaoyong(object):
  def mysql_query(self,i):
    sad = connectSQl()
    sad.ExecNonQuery(‘select * from user where id = “%s” ‘ % i )
if __name__ == ‘__main__’:
  w = diaoyong()
  w.mysql_query(‘5’)
免责声明:文章内容不代表本站立场,本站不对其内容的真实性、完整性、准确性给予任何担保、暗示和承诺,仅供读者参考,文章版权归原作者所有。如本文内容影响到您的合法权益(内容、图片等),请及时联系本站,我们会及时删除处理。

作者: 小小编

为您推荐

dell R710 更换raid卡后,raid卡信息没有了,处理方案

dell R710 更换raid卡后,raid卡信息没有了,处理方案

1.将一台服务器(A)的硬盘依次拔出,按相同顺序插入另一台同样配置的服务器(B) 2.启动服务器(B) 3.按提示键盘按...
PL SQL Developer 13连接Oracle数据库并导出数据详细操作教程方法

PL SQL Developer 13连接Oracle数据库并导出数据详细操作教程方法

下载 并安装 PL SQL Developer 13,默认支持中文语言 ========================...
关于一条sql语句在mysql中是如何执行的

关于一条sql语句在mysql中是如何执行的

最近开始在学习mysql相关知识,自己根据学到的知识点,根据自己的理解整理分享出来,本篇文章会分析下一个sql语句在my...
关于sql注入姿势总结(mysql)

关于sql注入姿势总结(mysql)

前言 学习了sql注入很长时间,但是仍然没有系统的了解过,这次总结一波,用作学习的资料。 从注入方法分:基于报错、基于布...
关于Oracle SQL外连接

关于Oracle SQL外连接

SQL提供了多种类型的连接方式,它们之间的区别在于:从相互交叠的不同数据集合中选择用于连接的行时所采用的方法不同。 连接...

发表回复

返回顶部