您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關怎么在django 2.2中使用mysql,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
可第一個坑(提示你的mysqlclient版本過低)
無聊你是否執行pip install mysqlclient安裝的最新版的,都拋出:
django.core.exceptions.ImproperlyConfigured: mysqlclient 1.3.3 or newer is required; you have 0.7.11.None
MD,LZ看到這錯誤太想罵人了,沒辦法采取網上的方法,注釋大法!
找到Python安裝路勁下的Python36-32\Lib\site-packages\django\db\backends\mysql\base.py文件
將文件中的如下代碼注釋(可能需先關閉pycharm IDE)
if version < (1, 3, 3): raise ImproperlyConfigured("mysqlclient 1.3.3 or newer is required; you have %s" % Database.__version__)
第二個坑(str類型沒有decode方法)
對對對,py3默認str是unicode編碼,通過encode方法編碼成bytes類型,后者才有decode解碼方法。
提示錯誤來源:Python36\lib\site-packages\django\db\backends\mysql\operations.py", line 149, in last_executed_query
這里網上一搜一堆的把encode改成decode方法,我靠,這誰的腦洞無敵了
源方法內容(pip安裝的django 2.2.1原封不動的內容):
def last_executed_query(self, cursor, sql, params): # With MySQLdb, cursor objects have an (undocumented) "_executed" # attribute where the exact query sent to the database is saved. # See MySQLdb/cursors.py in the source distribution. query = getattr(cursor, '_executed', None) if query is not None: query = query.decode(errors='replace') return query
通過print大法輸出query結果,內容為
SELECT @@SQL_AUTO_IS_NULL 數據類型為str
這里網上還有注釋大法,LZ不知道注釋了if的后遺癥是啥有沒有影響,于是也沒采納。
于是我去django的github去翻這個文件這個方法的最新/歷史版本,結果最新master分支內容如下:
def last_executed_query(self, cursor, sql, params): # With MySQLdb, cursor objects have an (undocumented) "_executed" # attribute where the exact query sent to the database is saved. # See MySQLdb/cursors.py in the source distribution. # MySQLdb returns string, PyMySQL bytes. return force_str(getattr(cursor, '_executed', None), errors='replace')
看函數名,應該是強制去把SQL轉換成str了
我靠!!!這尼瑪官網2.2.1/2.2.2(當前最新版)的包不是害人么,記得該文件上面引入下這個方法
from django.utils.encoding import force_str
以上就是怎么在django 2.2中使用mysql,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。