On 07/09/14 19:11, Andres Riancho wrote:
>         * I'm setting [4] "PRAGMA synchronous=OFF" for increased
> performance. Can this trigger malformed errors?

Read the doc:

  https://sqlite.org/pragma.html#pragma_synchronous

TLDR: yes

To improve write performance use WAL:

  https://sqlite.org/wal.html

Realise that SQLite can only be safe if at various points the data it wants
on the storage is actually completely written out and unaffected by power
failures etc.  You can go a lot faster by not doing that, but then the data
isn't safe.

Roger
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to