必須事先建庫(kù),庫(kù)字符集為UTF8
由于Inception 并不原生支持pymysql,所以需更改pymysql相關(guān)源碼
修改 $PYTHON_HOME/lib/python3.6/site-packages/pymysql下
connections.py 和 cursors.py 兩個(gè)文件
找到 connections.py 1108行
if int(self.server_version.split('.', 1)[0]) >= 5: self.client_flag |= CLIENT.MULTI_RESULTS 更改為
try: if int(self.server_version.split('.', 1)[0]) >= 5: self.client_flag |= CLIENT.MULTI_RESULTS except: if self.server_version.split('.', 1)[0] >= 'Inception2': self.client_flag |= CLIENT.MULTI_RESULTS
找到 cursors.py 345行
if self._result and (self._result.has_next or not self._result.warning_count): return
更改為
if self._result: return
注: 在install 文件夾下有已經(jīng)修改的connections.py 和 cursors.py 直接替換即可
更多建議: