diff Core/SQLite/Connection.h @ 206:4453a010d0db

flush to disk thread
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 28 Nov 2012 12:03:18 +0100
parents c996319e90bc
children bdd72233b105
line wrap: on
line diff
--- a/Core/SQLite/Connection.h	Wed Nov 28 11:34:54 2012 +0100
+++ b/Core/SQLite/Connection.h	Wed Nov 28 12:03:18 2012 +0100
@@ -111,6 +111,8 @@
         return Execute(sql.c_str());
       }
 
+      void FlushToDisk();
+
       IScalarFunction* Register(IScalarFunction* func);  // Takes the ownership of the function
 
       // Info querying -------------------------------------------------------------
@@ -169,7 +171,7 @@
 
       bool BeginTransaction();
       void RollbackTransaction();
-      bool CommitTransaction();
+      bool CommitTransaction();      
     };
   }
 }