博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python mysql 单引号字符串过滤
阅读量:6253 次
发布时间:2019-06-22

本文共 1525 字,大约阅读时间需要 5 分钟。

最主要用这个函数,可以处理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.commdb_model = mysql_conn.MySQLHelper(config.comm_db['host'], config.comm_db['user'],                                                   config.comm_db['password'], config.comm_db['db_name'],                                                   config.comm_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.commdb_model.insert('ip_area',{
'start_ip':list[0],'end_ip':list[1],'area':list[2],'info':info})if __name__ =="__main__": keep = Guide() keep.index()

 

 

 

转载地址:http://pgusa.baihongyu.com/

你可能感兴趣的文章
关于JS面向对象、设计模式、以及继承的问题总结
查看>>
Spring Boot中使用MyBatis注解配置详解
查看>>
MatLab实现FFT与功率谱
查看>>
答《漫话ID》中的疑问:UniqueID和ClientID的来源
查看>>
STL容器--学习笔记
查看>>
使用Word 2010群发邮件
查看>>
【转】Asp.net控件开发学习笔记整理篇 - 服务器控件生命周期
查看>>
Linux下的shell编程(一)BY 四喜三顺
查看>>
hadoop之 心跳时间与冗余快清除
查看>>
执行计划-数据访问方式(全表扫描与4种索引的方式)
查看>>
Shared_ptr循环引用解决(weak_ptr的作用)
查看>>
P1578 奶牛浴场
查看>>
sqlite 数据库错误 The database disk image is malformed database disk image
查看>>
解决MySQL导入中文乱码
查看>>
11、多线程(三) -- 线程池
查看>>
生成APK时,报错处理
查看>>
简单易懂,原码,补码,反码
查看>>
Postman教程
查看>>
阿里巴巴三板斧
查看>>
谁的青春不迷茫
查看>>