用python的mysql.connector模块运行代码结果为空,但是在数据库命令行下运行有结果
PHP中文网
PHP中文网 2017-04-18 09:40:46
0
3
398

cursor.execute("SELECT article_num1,article_num2,citation_num1,citation_num2,shortest_path_length FROM colla WHERE colla.author_name1 = '%s'",name)

结果为None

但是在数据库的命令行里运行就有结果,这是什么原因?

PHP中文网
PHP中文网

认证高级PHP讲师

reply all(3)
伊谢尔伦
cursor.execute("SELECT article_num1,article_num2,citation_num1,citation_num2,shortest_path_length FROM colla WHERE colla.author_name1 = %s",(name,))

This is the best answer I found. I got the correct result.
Reminder, I am using python3.4

黄舟

How did you get the results,cursor.fetchone()

大家讲道理

The parameters of execute are wrong. The second parameter must be a sequence or dict. It can be changed to the following.

cursor.execute("SELECT article_num1,article_num2,citation_num1,citation_num2,shortest_path_length FROM colla WHERE colla.author_name1 = '%s'",(name,))
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template