Skip to content Skip to sidebar Skip to footer

How Can I Export To Sqlite (or Another Format) And Retain The Date Datatype?

I have a script that loads a CSV into a pandas dataframe, cleanses the resulting table (eg removes invalid values, formats dates as dates, etc) and saves the output to a local sqli

Solution 1:

As shown here (w/ sqlite writing), here (reading back from sqlite), the solution could be by creating the column type in sqlite as a datetime, so that when reading back, python will convert automatically to the datetime type.

Mind that, when you are connecting to the database, you need to give the parameter detect_types=sqlite3.PARSE_DECLTYPES

Post a Comment for "How Can I Export To Sqlite (or Another Format) And Retain The Date Datatype?"