0

在我正在创建的程序中,我使用了以下代码:

sqlcommand2 = "SELECT ChoiceDesc FROM Choices WHERE Choice_ID = (?)"
result2 = c.execute(sqlcommand2, (firstchoice))

但是,当我运行它时,我得到错误 ValueError: parameters are of unsupported type。在这种情况下,Choice_ID 是一个整数,ChoiceDesc 是一个字符串,而 firstchoice 也是一个整数。我怎样才能解决这个问题?

编辑:通过在 result2 中的 firstchoice 后添加逗号来解决问题

4

0 回答 0