最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

python實(shí)現(xiàn)mysql的單引號(hào)字符串過濾方法

 更新時(shí)間:2015年11月14日 15:13:57   作者:jackluo  
這篇文章主要介紹了python實(shí)現(xiàn)mysql的單引號(hào)字符串過濾方法,以一個(gè)較為詳細(xì)的實(shí)例形式分析了Python針對(duì)MySQL的操作及字符串過濾的技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了python實(shí)現(xiàn)mysql的單引號(hào)字符串過濾方法。分享給大家供大家參考,具體如下:

最主要用這個(gè)函數(shù),可以處理MySQLdb.escape_string(content).

class Guide:
 def __init__(self):
  self.time_zone = 7*3600 #設(shè)置時(shí)區(qū)
  self.now_time = int(time.time()) + self.time_zone #取得當(dāng)前時(shí)間
   #本地
  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'])
  #遠(yuǎn)程
  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()

希望本文所述對(duì)大家python程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論

玉门市| 边坝县| 广西| 天长市| 唐海县| 从化市| 侯马市| 来凤县| 芜湖县| 扶风县| 日照市| 澄城县| 磴口县| 广东省| 尼木县| 榆树市| 鹤峰县| 罗田县| 名山县| 嘉黎县| 于田县| 宁晋县| 安国市| 德兴市| 濮阳县| 峨眉山市| 翼城县| 临猗县| 锦州市| 克东县| 岱山县| 安福县| 东山县| 宁远县| 双柏县| 宁强县| 大方县| 郴州市| 三门峡市| 彭泽县| 原平市|