解決python3插入mysql時內容帶有引號的問題
插入mysql時,如果內容中有引號等特殊符號,會報錯,
解決方法可以用反斜槓轉義,還可以用pymysql的一個方法自動轉義:
c = ''' 北京時間9月20日晚間9點半,智慧供應鏈服務供應商百世集團將在<a class="wt_article_link" onmouseover="WeiboCard.show(2125973432,'tech',this)" href="?zw=tech" rel="external nofollow" target="_blank">紐約證券交易所</a>正式掛牌上市,交易程式碼為“BSTI”。這是繼<span id="usstock_ZTO"><a href="http://stock.finance.sina.com.cn/usstock/quotes/ZTO.html" rel="external nofollow" class="keyword f_st" target="_blank">中通</a></span><span id=quote_ZTO></span>快遞之後第二家赴美上市的快遞物流企業。 </p>
<p> 此次IPO百世集團一共發行4500萬股美國存托股份(ADS),每股價格為10美元,總融資額高達4.5億美元,為今年目前為止在美國上市的中國公司中募資規模最大的IPO。此外,百世和售股股東還允許其承銷商通過超額配售權購買額外不多於675萬股ADS。</p>
<p> 有中通這個“珠玉”在前,美股市場似'''
pymysql.escape_string(c)
sql = "INSERT INTO tbl_stream_copy(weburl,title,content,channelId,datetime,pubtime,website)VALUES ('%s','%s',\'%s\','%s')" % (a,b,pymysql.escape_string(c),e,a)
補充拓展:Python中執行MySQL語句,遇到同時有單引號,雙引號處理方式 !r,repr()
SQL語句:
insert_cmd = "INSERT INTO {0} SET {1}" .format(db_conn.firmware_info_table,','.join(['{0}={1!r}'.format(k,str(v)) for (k,v) in info_dict.items()]))
其中{0}={1!r} 作用是設定欄位的值,一般情況應該是:
{0}='{1}'.format(columnA,value)
但若value中同時有雙引號和單引號("",''),比如{'abc': '123',"def": "456"},
則會在execute(insert_cmd)時報錯。
如果想保持資料原始性,不使用replace替換成統一的單引號或者雙引號,
則可以使用!r來呼叫repr() 函式,將物件轉化為供直譯器讀取的形式。
repr() 返回一個物件的 string 格式。
!r 表示使用repr()替代預設的str()來返回。
注:repr是str的方法,所以value需要是string,若資料是dict等型別,需要使用str()轉換成string
According to the Python 2.7.12 documentation:
!s (apply str()) and !r (apply repr()) can be used to convert the value before it is formatted.
貼出str類中的repr說明:
repr(object)
Return a string containing a printable representation of an object.
This is the same value yielded by conversions(reverse quotes).
It is sometimes useful to be able to access this operation as an ordinary function.
For many types,this function makes an attempt to return a string that would yield
an object with the same value when passed to eval(),
otherwise the representation is a string enclosed in angle brackets
that contains the name of the type of the object together with additional information
often including the name and address of the object. A class can control what this function
returns for its instances by defining a __repr__() method.
以上這篇解決python3插入mysql時內容帶有引號的問題就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支援我們。