upgraded sqlite to 3.6.11

This commit is contained in:
Guenter Obiltschnig
2009-03-24 12:11:55 +00:00
parent a790bba33c
commit 62c50bac61
9 changed files with 21648 additions and 13033 deletions

View File

@@ -78,6 +78,11 @@ public:
static void enableSharedCache(bool flag = true);
/// Enables or disables SQlite shared cache mode
/// (see http://www.sqlite.org/sharedcache.html for a discussion).
static void enableSoftHeapLimit(int limit);
/// Sets a soft upper limit to the amount of memory allocated
/// by SQLite. For more information, please see the SQLite
/// sqlite_soft_heap_limit() function (http://www.sqlite.org/c3ref/soft_heap_limit.html).
};