SQLite supports bytes, so you could store anything if you convert it to bytes, or just serialize the

SQLite supports bytes, so you could store anything if you convert it to bytes, or just serialize them on your own and store it as a blob or text. The conversion is not automatic though, you do it when you INSERT rows.
Was this page helpful?