Artem <devspec at yandex.ru> wrote: ...snip... > SQLite is functioning for about 4 hours, after which Segmentation Fault error > occurs inevitably. ...snip...
You did not provide any stack dump, so I don't think that SQLite developers can do anything to help you. Anyway, it's more likely that the bug is in your application. Since you use Linux, you should try to recompile and link with -fsanitize=address -g -O0 -fno-omit-frame-pointer -fsanitize option is available in recent versions of gcc or clang. It will likely tell you where the bug is. Regards Dominique