I am trying to print out some database resutls as follows
cursor.execute("SELECT * FROM User")
numrows_user = int(cursor.rowcount)
i_user = int(0)
Results_user = cursor.fetchall()
while i_user < numrows_user:
print Results_user[i_user]["ID"]
Put i am getting nothing i know i_user is working and i know there is information in the database if i do something like
print Results_user[0]["ID"]
i get info printed out. Why wont it work with the loop