pymysql 寫sql報的錯誤和動態語句的寫法

2022-05-23 09:09:10 字數 403 閱讀 2824

typeerror: %d format: a number is required, not str

要傳入乙個數字而不是字串

pymysql.err.internalerror: (1054, "champ '被修改了ya' inconnu dans where clause")

要傳入的是字串

sql語句的兩種寫法:

第一種是使用佔位符,format傳入佔位符的值

"select * from art where title='' and id=".format('被修改了ya','2')))

第二種:

"select * from art where id=%s and title='%s'"%(1,'被修改了ya')))

視訊穩定報的錯誤

opencv error insufficent memory 的問題 但是看報錯的內容好像是記憶體不足的樣子。記憶體不足 應該是opencv 裡面該釋放的一些記憶體沒有釋放。仔細看了一下是因為最後一步有個ipimage 在最後的結尾出釋放了相應的記憶體 就沒有問題了。查到的結果好像是ipimage...

pymysql防止SQL注入的方法

import pymysql class db object def init self self.conn pymysql.connect host 192.168.0.58 user root password 123456 port 3306 self.cursor self.conn.cur...

解決git push 報沒許可權的錯誤

今天我在使用git push 將修改的專案push到github中,出現 remote permission to xx.git denied to fatal unable to access xx.git the requested url returned error 403 修改.git c...