it's been reported here as well after upgrading to 1.0.66.0 (3.6.23.1), but it could also be coincidence.
Db is not pw protected and normally resides on RAM disk.
During maintenance phase (usually over night) db will be vacuumed and device rebooted.
Db is copied to SDCard temporarily, where following commands are executed:
PRAGMA temp_store=1;
PRAGMA temp_store_directory='\Storage Card\tmp\' ;
VACUUM;
If there was no error db is copied back to RAM, application shuts down (in a clean manner, closing db aso.) and the device is rebooted.
Surprsingly, log shows the first command failing (ANALYZE) on next application start using the vacuumed db. (malformed disk image)
I guess I will add verification PRAGMA integrity_check; to circumvent the problem for now.