Maybe the format of my SQLite file is different than to what you are familiar with. The SQLite file consists of one table, each row is information about each survey submitted however the actual responses associated with each survey question are stored into one cell in JSON format. From the picture below, the SQLite file contains a table called "Surveys" with 7 rows, each one a survey submission. Exporting this table as a csv is not helpful because the actual answers to the survey questions are still hidden in JSON format within one cell (column labeled "data").
If this is not familiar to you, maybe I'll go back to my original option of using the python code provided by @JamesTedrick .