Python Execute() takes exactly 2 arguments (3 given)

て烟熏妆下的殇ゞ 提交于 2019-12-25 04:05:52

问题


I am trying to insert into the SQLite DataBase values with this code:

con.Execute('''UPDATE tblPlayers SET p_Level = ? WHERE p_Username= ? ''', (PlayerLevel,PlayerUsername))

this is the Execute function:

def Execute(self,SQL):
    self.__connection.execute(SQL)
    self.__connection.comit()

and i am getting this error:

con.Execute('''UPDATE tblPlayers SET p_Level = ? WHERE p_Username= ? ''', (PlayerLevel,PlayerUsername)) TypeError: Execute() takes exactly 2 arguments (3 given)


回答1:


Your Execute() method takes only two arguments, self and SQL. The self argument is supplied by Python to bound methods, so there is only room for the SQL argument:

def Execute(self,SQL):

but you called the bound method with an additional argument, not just the one SQL argument:

con.Execute('''UPDATE tblPlayers SET p_Level = ? WHERE p_Username= ? ''',
            (PlayerLevel,PlayerUsername))

The tuple value passed in, together with the auto-inserted self argument and the SQL argument makes three.

If you want to support SQL parameters, you'll need to accept those parameters:

def Execute(self, SQL, params=()):
    self.__connection.execute(SQL, params)
    self.__connection.commit()



回答2:


This line says you are inputting two arguments:

con.Execute('''UPDATE tblPlayers SET p_Level = ? WHERE p_Username= ? ''', (PlayerLevel,PlayerUsername))

Add those 2 arguments to the implicit self argument that's passed automatically with the instance, you now have 3 arguments.

Either keep to 1 argument when calling it or modify the definition of Execute to accomodate 1 more argument.



来源:https://stackoverflow.com/questions/28220691/python-execute-takes-exactly-2-arguments-3-given

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!