我正在使用python Qt和MySQLdb,我遇到了这个问题:
在此功能中
def connection(self,username,password):
try:
self.conn=MySQLdb.connect(host="localhost",user=username,passwd=password)
return True
except MySQLdb.Error:
return False
当我手动输入用户名和密码时,它很顺利,但是当我尝试使用以下命令从Qt界面获取时:
str(pass_text.text())
它无法连接。我试过的时候:
print str(pass_text.text())
它确实打印了写字符串。我很困惑......你能帮帮我吗?