For some reason I keep getting a
findSenGroup = cur.executemany("UPDATE SEN_Table SET SenNumber = " + senNumStr + " WHERE FormName='" + nameGroup + "'")
TypeError: function takes exactly 2 arguments (1 given) error
with this update statement:
findSenGroup = cur.executemany("UPDATE SEN_Table SET SenNumber = " + senNumStr + " WHERE FormGroup='" + nameGroup + "'")
Table shown below
senNumStr
is a the number that i want to update a column to.
nameGroup
is the name of the row of where I want senNumStr
added tp
`````