Skip to content
Advertisement

sqlite cursor fetchone() returns ‘NoneType’?

I want to build a function that returns the lowest row count from all tables if the two scores scor1 and scor2 are not both 0 :

JavaScript

This is the result of the print statement:

JavaScript

and this is the error:

JavaScript

Advertisement

Answer

After executing a query with execute, the query results will be available in a query result set, which you can then iterate over with the c.fetch* methods.

The thing to note here, is that fetch* will iterate over the result set, exhausting it. This works similar to a generator, which you can only iterate over once.

It works something like this. Imagine a pointer pointing to the next row in the result set to be queried. Running c.execute gives a result set looking like this –

JavaScript

After calling c.fetchone, head will return the next row, and advance by one row –

JavaScript

Since you have only one row in your table, another call to fetchone returns an empty list.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement