cursor.execute("SELECT article_num1,article_num2,citation_num1,citation_num2,shortest_path_length FROM colla WHERE colla.author_name1 = '%s'",name)
结果为None
但是在数据库的命令行里运行就有结果,这是什么原因?
认证高级PHP讲师
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()
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,))
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.