1. 程式人生 > >【python】python3的包pymysql的坑

【python】python3的包pymysql的坑

由於堅定的想堅持用python3,所以連結mysql的時候使用pymysql庫,以下是遇到的坑:

1,連線的時候port是一個數字不是字串

如下所示:

mport  pymysql

conn = pymysql.connect(host='127.0.0.1',port = 3306,user='root',passwd='root',db = 'mysql')

如果寫 port = "3306" 就連線不上了。

2,判斷欄位是不是空的時候用"is not null" 不能用" !='' "

select keyword, hert from data_table where keyword is not null and hert=1 limit 50;