如何获得正确的字符串以使用数据库连接

时间:2015-04-26 21:56:44

标签: python qt mysql-python

我正在使用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())

它确实打印了写字符串。我很困惑......你能帮帮我吗?

0 个答案:

没有答案