Skip to content
Advertisement

CSV to SQL, but all values are NULL

I am trying to convert a set of relational .csv files to a db with sqlite3:

This runs without error and produces a database with the correct tables which have the correct columns. The rows, however, are all NULL for some reason.

I have tried debugging the insertion line to see what is going on. I stepped into the executemany() function. Inside the DictReader variable was a fieldnames list ['2', '383', '0.5019', '2003-08-12'] which is indeed one of the rows that belong in a table. I cannot figure out why it is being inserted into my database as NULL.

Advertisement

Answer

(list(map(row.get, columns)) for row in dr)) produces a generator object, but executemany takes a sequence of sequences. You instead need [list(map(row.get, dr.fieldnames)) for row in dr], [] instead of ().

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