Skip to content
Advertisement

How to loop thorough rows of each column in a table?

I am trying to write a small program to transform a database. It is an SQLite database, and I am using Python. I am experiencing a problem where the query I’m writing doesn’t seem to work properly:

JavaScript

For some reason, what’s printed here is just a list on the column name repeated a number of times. If I replace the ? with the column name literally copied from the output of the columns variable however, it works, and prints every row in the column.

What am I doing wrong?

Advertisement

Answer

You can’t let the connector do substitution for table names and column names. What happens is that the connector produces SQL like:

JavaScript

and what you get back is the literal string 'column'. You need

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