On 11/05/2013 04:54 PM, Nick the Gr33k wrote:
=============== data = cur.fetchall
data = cur.fetchall() That is what the stack trace and Christ tried to inform you.
for row in data: =============== The only thing i can understand by looking the above 2 lines is this: 'for' fails to iterate over 'data' because for some reason 'data' haven't resulted as a list of rows that can be iterated row by row. But that just doesn't help me much.
-- https://mail.python.org/mailman/listinfo/python-list