android - What happens with Inserts if SQLite Database reaches storage limit? -


I have a mobile app (iOS / Android) that uses a SQLite database. If I insert data then the database increases to that point where the maximum permissible limit reaches. When the database reaches its threshold and what do I include new data with this data?

EDIT:

How many quotes do I have on iOS and Android?

Your data will not be included because your DB is full, and you will get a SQLITE_FULL error.

To know the limitations of SQLite, please go to:

It seems that you will reach that limit.

You can set a logical limit manually, and set its behavior (for example, if you add up to 100 entries and if 101 has been added, remove the oldest one)


Comments

Popular posts from this blog

python - Overriding the save method in Django ModelForm -

html - CSS autoheight, but fit content to height of div -

qt - How to prevent QAudioInput from automatically boosting the master volume to 100%? -