###、MySQLに格納したいと思っています。
発生している問題・エラーメッセージ
raise ProgrammingError(str(m))
MySQLdb._exceptions.ProgrammingError: not all arguments converted during bytes formatting
上記のように表示され、抽出結果をMySQLに格納できません。
データをMySQLに格納するためにはどうすればよろしでしょうか
該当のソースコード
Python
1 2 3 4 5def main(): 6 CK = '*****************************************' 7 CKS = '*****************************************' 8 AT = '*****************************************' 9 ATS = '*****************************************' 10 11 #接続 12 conn = MySQLdb.connect(host='localhost',user='root',passwd='abcdefg',db='aaa',') 13 c = conn.cursor() 14 15 c.execute("INSERT INTO tweet(user_id,content) VALUES(%s,%s)") 16 cursor.close() 17 conn.commit() 18 19 20 21 main()