Controling file flushing using SQLite.NET

Connection string

This SQLite.NET connection string can be used for connections to SQLite.

Data Source=c:\mydb.db;Version=3;Synchronous=Full;

Full specifies a full flush to take action after each write. Normal is the default value. Off means that the underlying OS flushes I/O's.