最主要用这个函数,可以处理MySQLdb.escape_string(content).
class Guide:
def __init__(self):
self.time_zone = 7*3600 #设置时区
self.now_time = int(time.time()) + self.time_zone #取得当前时间
#本地
self.gamedb_model = mysql_conn.MySQLHelper(config.game_db['host'], config.game_db['user'],
config.game_db['password'], config.game_db['db_name'],
config.game_db['port'])
#远程
self.remote_model = mysql_conn.MySQLHelper(config.remote_db['host'], config.remote_db['user'],
config.remote_db['password'], config.remote_db['db_name'],
config.remote_db['port'])
#game center
self测试数据mdb_model = mysql_conn.MySQLHelper(config测试数据m_db['host'], config测试数据m_db['user'],
config测试数据m_db['password'], config测试数据m_db['db_name'],
config测试数据m_db['port'])
def index(self):
#拿到第二天未登陆的用户
for line in open("2014.3.20_global_ips.txt"):
list = line.split('||')
l = len(list)
if l == 3:
info = ''
else:
info = MySQLdb.escape_string(list[3])
self测试数据mdb_model.insert('ip_area',{'start_ip':list[0],'end_ip':list[1],'area':list[2],'info':info})
if __name__ =="__main__":
keep = Guide()
keep.index()
希望本文所述对大家python程序设计有所帮助。
查看更多关于python实现mysql的单引号字符串过滤方法的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did89321