python實現mysql的單引號字串過濾方法

來源:互聯網
上載者:User
本文執行個體講述了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程式設計有所協助。

  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.