I need to process mysql data one row at a time and i have selected all rows put them in a tuple but i get the error above.
what does this mean and how do I go about it?
|
|
|
|
|
|
|
|
||
|
|
|
|
It means that the object you are trying to iterate is actually None; maybe the query produced no results? |
||
|
|
|
|
The function you used to select all rows returned None. This "probably" (because you did not provide code, I am only assuming) means that the SQL query did not return any values. |
||
|
|
|
|
Try using the cursor.rowcount variable after you call cursor.execute(). (this code will not work because I don't know what module you are using).
Alternatively, you can do this (if you know you want ever result returned):
|
||
|
|
|
|
This error means that you are attempting to loop over a None object. This is like trying to loop over a Null array in C/C++. As Abgan, orsogufo, Dan mentioned, this is probably because the query did not return anything. I suggest that you check your query/databse connection. A simple code fragment to reproduce this error is: x = None for each i in x: #Do Something pass |
||
|
|