在用pyqt生成前端代码后,自己写了个函数,结果控件触发调用时总是提示:TypeError: checkcode() takes exactly 1 argument (2 given) 这个错误,搞了好多次,终于有了解决方案。只需要在def checkcode(self,code): 这样就可以ok了。另外需要指出的是python中sql语句的“等于”用的是一个等号,而不是两个双等号。
def checkcode(code):
con = mdb.connect('192.168.*.97', 'root', 'root', 'company',charset='utf8');
with con:
#仍然是,第一步要获取连接的 cursor 对象,用于执行查询
cur = con.cursor()
return cur.execute('SELECT * FROM user where randomCode=%s',code)
“`