本文实例讲述了python实现mysql的单引号字符串过滤方法。分享给大家供大家参考,具体如下:
最主要用这个函数,可以处理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()
希望本文所述对大家python程序设计有所帮助。
本文向大家介绍groovy 单引号字符串,包括了groovy 单引号字符串的使用技巧和注意事项,需要的朋友参考一下 示例
本文向大家介绍替换php字符串中的单引号为双引号的方法,包括了替换php字符串中的单引号为双引号的方法的使用技巧和注意事项,需要的朋友参考一下 实例如下: 以上这篇替换php字符串中的单引号为双引号的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持呐喊教程。
本文向大家介绍C#实现简单过滤非法字符实例,包括了C#实现简单过滤非法字符实例的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了C#实现简单过滤非法字符的方法。分享给大家供大家参考,具体如下: 希望本文所述对大家C#程序设计有所帮助。
我可以将替换为其他一些字符序列(例如)来执行字符串替换,但是如果我可以用正则表达式来替换,这将更加清楚。
本文向大家介绍python字符串过滤性能比较5种方法,包括了python字符串过滤性能比较5种方法的使用技巧和注意事项,需要的朋友参考一下 python字符串过滤性能比较5种方法比较 总共比较5种方法。直接看代码: 感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
问题内容: 我有一个将文本字段中的值发送到数据库的应用程序。 例如,我有一个带有一个字段的表单(文本框)。当我按“确定”按钮时,文本字段的内容将作为记录插入到表中。我只是修剪并将文本框的文本提取到变量中,然后将其传递给我的SQL字符串。 问题是,无论何时像“ It’s”或“ Friend’s”之类的单引号都被标识为字符串的结尾。在Delphi中,我看到了避免这种情况的方法。您有什么想法吗? 问题答