写的非常好,可以解决问题: windows下:http://blog.csdn.net/wklken/article/details/7253245 linux下:http://blog.csdn.net/wklken/article/details/7271019 另外,这篇作为总体配置方案非常好:http://lbxhappy.iteye.com/blog/816074 MySQL for python编译好的版本,下载列表,:http://www.codegood.com/download…
sql注入中最常见的就是字符串拼接,研发人员对字符串拼接应该引起重视,不应忽略. 错误用法1: sql = "select id, name from test where id=%d and name='%s'" %(id, name) cursor.execute(sql) 错误用法2: sql = "select id, name from test where id="+ str(id) +" and name='"+ name +&qu…
MySQL Connector/Python 是 MySQL 官方提供的 Python 连接 MySQL 数据库的驱动程序了,很多初学者对于 在python中连接mysql数据库还是有点为难了,下文我们只需要了解这个MySQLConnector模块问题就可以解决了.相较于MySQLdb模块来说,其支持python3,而MySQLdb目前只支持到python2.7版本.这里就结合示例,总结下MySQL Connector模块的用法. 1.数据库连接 连接数据库的代码如下 import mysql.…