优化MyDb

Posted 彼得潘jd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了优化MyDb相关的知识,希望对你有一定的参考价值。

import pymysql
class MyDb(object): #新式类

def __del__(self):#析构函数
self.cur.close()
self.coon.close()
print(‘over...‘)

def __init__(self, #构造函数
host,user,passwd,db,
port=3306,charset=‘utf8‘):
try:
self.coon=pymysql.connect(
host=host,user=user,passwd=passwd,port=port,
charset=charset,db=db,autocommit=True#自动提交
)
except Exception as e:
print(数据库连接失败!%s‘%e)
else: #建立游标
self.cur=self.coon.cursor(cursor=pymysql.cursors.DictCursor)

def ex_sql(self,sql):
try:
self.cur.execute(sql)
except Exception as e:
print(‘sql语句有问题,%s‘%sql)
else:
self.res=self.cur.fetchall()
return self.res

my=MyDb(‘xx.xx.xx.xx‘,‘xxx‘,‘123456‘,‘xxx‘)
my.ex_sql(‘select * from stu;‘)
print(my.res)
print(我是最后一行代码...‘)






















































以上是关于优化MyDb的主要内容,如果未能解决你的问题,请参考以下文章

优化技巧汇总_通用优化+Linux 优化+HDFS 优化+MapReduce 优化+HBase 优化+内存优化+JVM 优化+Zookeeper 优化

优化技巧汇总_通用优化+Linux 优化+HDFS 优化+MapReduce 优化+HBase 优化+内存优化+JVM 优化+Zookeeper 优化

iOS性能优化总结

MySql性能优化查询优化

SEO优化:网站页面优化URL优化内部链接优化

MySQL 进阶 索引 -- SQL优化(插入数据优化:导入本地文件数据主键优化order by优化group by优化limit优化count优化update优化)