Small. Fast. Reliable.
Choose any three.
*** 1,5 ****
--- 1,11 ----
  This page is about using in-memory SQLite databases.
  ----
+ 2006-06-28: <html>The <a
+ href="http://www.kordelle.de/sqlite">patch</a> for SQLite 3.2.2 to add the dump feature is not working on SQLite 3.3.6 because the dirty list mechanism is changed. To work dumping again, add just one line after marking all pages dirty.</html>
+ 
+   pPager->pDirty = pPager->pAll;
+ 
+ ----
  2006-02-22: "If the name of the database is an empty string or the special name ":memory:" then a new database is created in memory. "
  NOTE: There is a difference between a database created with an empty string and a database created with string ":memory:"! For the one, created with "" there exists a temp file in the temp-folder under Windows. The performance of the ":memory:"-database is much better than that of the ""-database.