TinyClr SQL Lite Disk Full

Just upgraded to 2.1.0 and I’m getting SQL Lite exception with a message of disk full. The database is located in a 32 GB SD card and it is not full.

It creates the database, and writes to it but it hangs and then gives the exception.

Has anybody noticed or have the same issue upgrading to 2.1.0 release? What version of SQL Lite does 2.1.0 use? Perhaps I need to change how I use SQL Lite.

we used v3300100

Thanks. I’ll take a look to see if there are any changes.

It appears to be caused when a “DELETE FROM [TABLE]” without a “WHERE” clause is used. It takes longer than it used to and other threads were tripping over it.

I was using a “DELETE” to remove all the contents of a table but it is probably better to use a “DROP” and “CREATE”.

3 Likes