没事封装了一个with上下文管理器,用来管理数据库的打开和关闭操作,代码如下:
class my_db(object):
# 封装数据库操作 上下文管理器 实现enter和exit方法
def __init__(self):
# 数据初始化操作
self.conn=connect(host='localhost', port=3306, database='stock_db', user='root', password='mysql', charset='utf8')
self.cs=self.conn.cursor()
def __enter__(self):
# 返回资源
return self.cs
def __exit__(self, exc_type, exc_val, exc_tb):
self.conn.commit()
self.cs.close()
self.conn.close()
但是插入之后原数据服务器端一直报错,浏览器一直处于等待状态,没有任何反应:
错误是画红框的内容
pymysql.err.ProgrammingError: (1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '%E7%AC%AC%E4%B8%89%E6%96%B9)' at line 1")
Sat Feb 16 16:27:06 2019 <Greenlet at 0x7f7d30465048: <bound method WebServer.client_exec of <__main__.WebServer object at 0x7f7d32d28208>>(<gevent._socket3.socket object, fd=7, family=2, ty)> failed with ProgrammingError
查找了很久,原来是当python代码向数据库中插入字符串的时候需要处理一下:
格式:
pymysql.escape_string(data_updata)
pymysql.escape_string(字符串变量)
更改之后,就可以愉快的直接使用封装好的with上下文管理器,来两行代码代替原先的6行代码,在浏览器端正常运行,服务器端也不再报错!