Hello ! Hello I have an application that uses sqlite3_progress_handler to update a gui application and when we do a "vacuum" on a big database the gui get frozen, maybe vacuum should use different parameters to call sqlite3_progress_handler I'm using actually:
db.progress_handler(1000, sqlite3_progress_handler, this.weakref()); And with a 1000 as parameter it works fine for select. Sqlite3 is really calling sqlite3_progress_handler ? Or it's not implemented there ? Cheers !

