I am trying to log into my table called acounts using MySQLdb in Python, but it does not work for me. I keep getting my message "Not Logged In". Here is my code:
database = MySQLdb.connect("127.0.0.1", "root", "pswd", "Kazzah")
cursor = database.cursor()
cursor.execute("SELECT * FROM Accounts WHERE Email='%s' AND Password='%s'" % (_Email, _Password))
database.commit()
numrows = cursor.rowcount
if numrows == 1:
msg = "Logged In"
else:
msg = "Not Logged In"
cursor.close()
database.close()
What am I doing wrong? I am new to this so I hope I've done somewhat good. Thanks.
database.commit()? You are not writing anything to the DB. Does it work correctly if you remove it? Let me know if it does, I will add it as an answer. – Josvic Zammit Apr 14 '12 at 22:37