如何将列表插入MySQL DB

时间:2019-06-16 02:23:19

标签: mysql python-3.x flask

我尝试了其他方法将链接列表插入到数据库(MySQL)中,但是所有方法均失败。最好的方法是插入列表中的一项,但是像这样“ w,w,w,。,s,i,t,e,。,c,o,m”而不是“ www.site.com”。我该怎么做才能解决这个问题?

connection = mysql.connector.connect(host='localhost',
                           database='maquinadebusca',
                           user='root',
                           password='root')
 cursor = connection.cursor()
 var_string = ', '.join('%s' * len(links))
 query_string = 'INSERT INTO links (url) VALUES (%s);' % var_string
 cursor.execute(query_string, links)
 connection.close()

This is the current try, but in the log shows: 
raise ValueError("Could not process parameters")
ValueError: Could not process parameters

0 个答案:

没有答案