前言:本次实验基于Python3.5,很多问题都是可以用debug调试出来的
Python 操作MySQL流程
1、运行结果中文显示乱码
具体方法如下:
1)MySQL数据库charset=utf-8
2)Python文件设置编码 utf-8 ,在文件前面加上一下代码
# -*- coding: utf-8 -*-
3)Python连接MySQL时加上参数 charset=utf8
conn = pymysql.connect(host='localhost', port=3306, user='root',
passwd='123456', db='zyptest', charset='utf8')
4)设置Python的默认编码为 utf-8 (sys.setdefaultencoding(utf-8)
设置路径:Pycharm软件,File--Settings--File and Code Templates--Python Script
若想要结果以字典的方式输出,有2种方式(此方法不适用python3.6),代码如下
- 在 connection 的地方加上 cursorclass = pymysql.cursors.DictCursor
conn = pymysql.connect(host='localhost', port=3306, user='root',
passwd='123456Aa', db='zyptest', charset='utf8',
cursorclass = pymysql.cursors.DictCursor)
- 创建游标时指定
conn = pymysql.connect(host='localhost', port=3306, user='root',
passwd='123456Aa', db='zyptest', charset='utf8')
cur = conn.cursor(cursorclass=pymysql.cursors.DictCursor)
2、使用IP地址连接mysql数据库服务时提示“1130-host 'LAPTOP OOR4C 1HG' is not allowed to connect to this MySql server”
(pymql.connection 使用 host 使用 localhost 表达时调试没有问题)
解决办法
(1)改表法。
可能是你的帐号不允许从远程登陆,只能在localhost
mysql> use mysql;
mysql> select host,user from user;
mysql> update user set host='%' where user='root' and host='localhost';
提醒:如果方法一解决不了你的问题,那还是先把user表中的host字段值改回去,再试试方法二
(2)授权法
Sql代码(此处需要根据实际情况修改用户(root)和密码(123456)信息)
mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION; //授权
mysql>flush privileges; //刷新权限,不需要重启
3、使用云服务器的IP地址连接mysql数据库服务时提示“ConnectionRefusedError: [WinError 10061] 由于目标计算机积极拒绝,无法连接。”
原因分析:安装mariadb时禁止了远程登录
解决办法:重新设置,允许远程登录(详情见之前安装的文章)
1、找到mysql的配置文件my.cnf,使用命令 find / -name "*my.cnf"
2、在my.cnf文件的 [mysqld] 后加入skip-grant-tables,保存文件
3、重启mysql服务 service mysql restart
4、重新登录mysql (直接输入mysql,不需要密码)
5、修改密码
use mysql;
update user set password=PASSWORD("密码") where user='root';”(修改root的密码)
6、再把配置文件的my.cnf 加入的skip-grant-tables删除保存,或者 前面加上 #
7、重启mysql服务 (mysqld -restart)
8、重新登录(使用密码登录,mysql -uroot -p)
4、运行正常,但没有结果输出
OperationDbInterface 被封装成了类,此时叫做方法,想要调用的话需要实例化类。
(不封装叫函数)
if _name_ == "_main" (此处是2个下划线)
在句子开始处加上if,就说明,这个句子是一个条件语句
_name_:作为模块的内置属性,就是.py文件的调用方式
_main_:.py文件有两种使用方式:作为模块被调用和直接使用。如果它等于 "_main_" 就表示是直接执行
在 if _name == "_main_" :之后的语句作为模块被调用的时候,语句之后的代码不执行;直接使用的时候,语句之后的代码执行。通常,此语句用于模块测试中使用。
贴上源代码
import pymysql
import os
import logging
class OperationDbInterface(object): # 声明类
def __init__(self):
self.conn = pymysql.connect(host='localhost', port=3306, user='root',
passwd='123456', db='mysql', charset='utf8')
self.cur = self.conn.curror() # 创建游标
# 定义单条数据操作,增删改
def op_sql(self, param):
try:
self.cur.execute(param) # 执行sql语句
self.conn.commit()
return True
except pymysql.Error as e:
print("Mysql Error %d: %s" % (e.args[0], e.args[1]))
logging.basicConfig(filename=os.path.join(os.getcwd(), './log.txt'),
level=logging.DEBUG,
format='%(asctime)s %(filename)s[line:%(lineno)d] % (levelname)s %(message)s')
logger = logging.getLogger(__name__)
logger.exception(e)
return False
# 查询表中单条数据
def selectone(self, condition):
try:
self.cur.execute(condition)
results = self.cur.fetchone() # 获取一条数据
except pymysql.Error as e:
results = 'sql0001' # 数据库执行错误
print("Mysql Error %d: %s" % (e.args[0], e.args[1]))
logging.basicConfig(filename=os.path.join(os.getcwd(), './log.txt'),
level=logging.DEBUG,
format='%(asctime)s %(filename)s[line:%(lineno)d] % (levelname)s %(message)s')
logger = logging.getLogger(__name__)
logger.exception(e)
finally:
return results
# 查询表中多条数据
def selectall(self, conditon):
try:
self.cur.execute(conditon)
self.cur.scroll(0, mode='absolute') # 光标回到初始位置
results = self.cur.fetchall() # 返回游标中所有结果
except pymysql.Error as e:
results = 'sql0001' # 数据库执行错误
print("Mysql Error %d: %s" % (e.args[0], e.args[1]))
logging.basicConfig(filename=os.path.join(os.getcwd(), './log.txt'),
level=logging.DEBUG,
format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s')
logger = logging.getLogger(__name__)
logger.exception(e)
finally:
return results
# 定义表中插入多条数据操作
def insertmore(self, condition):
try:
self.cur.executemany(condition)
self.conn.commit()
return True
except pymysql.Error as e:
results = 'sql0001' # 数据库执行错误
print("Mysql Error %d: %s" % (e.args[0], e.args[1]))
logging.basicConfig(filename=os.path.join(os.getcwd(), './log.txt'),
level=logging.DEBUG,
format='%(asctime)s %(filename)s[line:%(lineno)d] %(levelname)s %(message)s')
logger = logging.getLogger(__name__)
logger.exception(e)
return False
# 判断表是否存在
def __del__(self):
if self.cur is not None:
self.cur.close()
if self.conn is not None:
self.conn.close()
if __name__ == '__main()__':
test = OperationDbInterface() # 实例化类
result = test.selectone('select * from db')
print(result)
原因分析:main()多了括号,应该是
if __name__ == '__main__':
改完之后运行报错 “AttributeError: 'Connection' object has no attribute 'curror'”
根据错误提醒回到20行代码检查,发现是 cursor 拼错了
接着改好执行发现结果出来了,但是仍有报错信息(Python3.5正常没有报错,如下图是3.6的报错信息)
备注:待解决
5、执行错误语句,生成日志文件,打开没有内容
检查发现 logging 用的是2.7的语法格式,用2.7调试报错
6、执行插入语句时报错
TypeError: insertmore() takes 2 positional arguments but 3 were given
原因分析:
executemany()方法是要传两个参数,一个sql语句一个args(list),源码中只有一个参数
解决办法:函数中增加参数 params
7、执行批量删除语句时报错
def deletemore(self, condition, params):
try:
self.cur.executemany(condition, params) # executemany为批量操作,可以进行多行插入
self.conn.commit()
return True
if __name__ == "__main__":
test = OperationDbInterface() # 实例化类
result = test.deletemore("delete from student WHERE id in(6,7)")
print(result)
原因分析:不管字段是str,还是int,或者其他类型,都需要使用 %s 传递参数的方式进行,正确如下
result = test.deletemore("delete from student WHERE id in(%s)",[6,7])