I am working on a project where I have to download files from server and store it in sqlite. It is working fine. I am using BLOB datatype in sqlite to store. But I found there is limitation in BLOB for large files like 400MB or 500MB.see limits of sqlite.
Also I thought to store the data in a file in physical location in system and store the path in sqlite. But there is chance of user to delete the file accidentally.
How to store such a big file in SQLite.
Using SQLite we can’t store such a large volume of data. This is limitation in SQLite.