I'm trying to follow the example shown as the top answer here: Python insert numpy array into sqlite3 database
At first I thought it was my code, but I've tried copying and pasting the answer code exactly and I'm still getting the same error:
OSError: Failed to interpret file <_io.BytesIO object at 0x02B87C00> as a pickle
It seems there is a problem in the convert_array function that numpy isn't recognizing it as a saved file (or maybe a problem with adapt_array function that isn't storing it properly?). I am using Python 3.4.3.2 and SQLite 3.8.9. Just curious if anyone can confirm that they are getting the same error when they try to run the code in the linked answer above, and especially if anyone has insights on how to fix it and make it work.