Index: SQLiteConvert.cs
===================================================================
--- SQLiteConvert.cs (.../vendor/SQLite.NET/current/System.Data.SQLite/SQLiteConvert.cs) (revision 39464)
+++ SQLiteConvert.cs (.../trunk/third-party/SQLite.NET/System.Data.SQLite/SQLiteConvert.cs) (revision 39464)
@@ -782,7 +782,12 @@
/// This option disables the rollback journal entirely. Interrupted transactions or a program crash can cause database
/// corruption in this mode!
///
- Off = 2
+ Off = 2,
+ ///
+ /// This option commits transactions by truncating the rollback journal to zero-length instead of deleting it. On many systems,
+ /// truncating a file is much faster than deleting the file since the containing directory does not need to be changed.
+ ///
+ Truncate = 3
}
///