I am working on a web application, using tornado framework and mysql-python for the database connector.
The requirement is like this - When the user logs in and say buys a product, the database has a table which has userid, and all the product related columns, which should be updated.
So there is a usertable, productsbought table. Say there are 5 users with id 1,2,3,4,5. So when user 3 buys a product the productsbought table will be updated with user id 3 and all the details of the product he bought.
Coming to the problem.
username = self.current_user
print username # prints correct username say thirduser with id 3
db = MySQLdb.connect(host='localhost', user='root', db= 'db')
uid = None
cur = db.cursor()
uid = cur.execute("""Select userid from user_table where username = %s """, (username,))
print uid # should display 3, but displays 1
cur.execute("""INSERT INTO productsbought (userid, pid, pname, model) VALUES ( %s, %s, %s, %s)""", (uid, pid, pname, model,))
# The insert is working fine but for the wrong user.
Now this uid should ideally print 3 (The id corresponding to thirduser, who has logged in to the application). But its printing 1.
So whoever logs in - their username is getting displayed correctly, but their userid is taken as 1 and the productsbought table is getting updated for firstuser.
In mysql i queried
select userid from user_table where username = "thirduser"
And it is displaying 3 correctly.
So everything looks fine but there is something wrong!! This is driving me nuts. Please help me out!!
Have you tried wrapping the %s in quotes? Also, is it possible there's some whitespace surrounding
self.currentuser
?I'd try: