gpt4 book ai didi

python - 具有特殊字符的 MYSQL::Connector/Python UPDATE 语句不起作用

转载 作者:行者123 更新时间:2023-11-29 07:30:48 25 4
gpt4 key购买 nike

我正在尝试使用 Selenium 和 Beautifulsoup 抓取网页,然后将结果存储到 MySQL。结果包含许多特殊字符,例如; ' "=..(因为它正在解析 HTML)

我关注了这个mysql connector/python和 INSERT 工作正常,但 UPDATE。
如果我选择我的表,我可以看到类似这样的内容

<div style="width:80px; float: ~~~ ... </div>

表示目标 HTML 元素存储成功。这是我的 INSERT 和 UPDTE。

# after import and configs
soup = BeautifulSoup(innerHTML, "html.parser")
text = soup.prettify()
print(text)

# this INSERT works fine
# insert = ("INSERT INTO g_cache (a_col, cache_contents) VALUES(%s, %s)")
# data_row = ('aaa', text)
# cursor.execute(insert, data_row)

# Trying to UPDATE already inserted row. Not working
# I executed and commented above INSERT before run the following UPDATE
update = ("""UPDATE g_cache SET cache_contents =%s WHERE id=21""")
data_col = (text)
cursor.execute(update, data_col)

# If I use one complete string, it works though. For example
# cursor.execute("""UPDATE g_cache SET cache_contents ='111' WHERE id=21""")
cnx.commit()

错误信息是
mysql.connector.errors.ProgrammingError: 1064 (42000): 你的 SQL 语法有错误;查看与您的 MySQL 服务器版本对应的手册,了解在第 1 行的“%s WHERE id=21”附近使用的正确语法

我刚刚关注了 MYSQL::Connector/Python API。
我不明白为什么使用相同的字符串 INSERT 有效但 UPDATE 无效。
有人有什么想法吗??

最佳答案

参数必须作为映射(即字典)或元组传递。仅传递一个参数时省略尾随逗号会导致它被视为标量,因此必须像这样传递参数:

data_col = (text,)

The docs还要在醒目的注释中提及这一点。

关于python - 具有特殊字符的 MYSQL::Connector/Python UPDATE 语句不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51359119/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com