Error message: SyntaxError: more than 255 arguments
該如何解決?
因為使用Python insert/update DB 失敗,異常訊息出現: SyntaxError: more than 255 arguments(如下圖)
原因: python 現行版本不支援參數超過255個
解決方法1:修正插入參數不得超過255個
ex:如果是insert的情況,就先insert 250 ,剩下的值再用update的方式
解決方法2:升級python 到3.7以上
ex:官方公布python 3.7 以上已解決此問題 (https://bugs.python.org/issue12844)
與每個人,一起分享所學到,所用到的,
若有錯誤,請您不吝指教,謝謝大家。