Thanks to visit codestin.com
Credit goes to chromium.googlesource.com

  1. 9db4828 Fix a problem with the handling of SQLITE_FCNTL_PRAGMA in the test_onefile.c by dan · 7 years ago
  2. 77fac87 More harmless compiler warning fixes. by mistachkin · 9 years ago
  3. 8e18922 Fix harmless compiler warnings seen with MSVC 2015. by mistachkin · 10 years ago
  4. 83cc139 Fix harmless compiler warnings on x64 MSVC, mostly in test code, but also in by drh · 13 years ago
  5. 7da5fcb Fix MSVC compiler warnings in test code. by drh · 13 years ago
  6. e11fedc Change the name of the xShmClose VFS method to xShmUnmap, everywhere. by drh · 15 years ago
  7. da9fe0c Changes so that the xShmOpen VFS method is no longer required. Its job can be done by the first call to xShmMap. Rename xShmClose to xShmUnmap. by dan · 15 years ago
  8. 2667be5 Remove the unused xRename() method from the sqlite3_vfs object. by drh · 15 years ago
  9. 6b017cc Move the xShmMap method to in between xShmLock and xShmBarrier, since it seems by drh · 15 years ago
  10. 286a288 Add a new xShmBarrier method to the VFS - a shared-memory fence operation. by drh · 15 years ago
  11. d9e5c4f Refactoring the VFS-SHM methods used by WAL. This version compiles and by drh · 15 years ago
  12. f72a875 Remove the xShmPush and xShmPull methods from the VFS. by drh · 15 years ago
  13. f2424c5 Begin moving WAL-specific I/O into the VFS. This checkin contains VFS by drh · 15 years ago
  14. c81c11f Remove the obsolete "$Id:$" RCS identifier strings from the source code. by drh · 16 years ago
  15. 64aca19 Change "... myfunction() { ... }" to "... myfunction(void) { ... }" in a few pla by danielk1977 · 16 years ago
  16. 2b754b4 For the "onefile" demo, pass SQLITE_OPEN_TEMP_DB instead of MAIN_DB to the OS layer when opening the single file. This is to work around the assert() in os_unix.c that tests that the locking region is not written to. (CVS 6278) by danielk1977 · 16 years ago
  17. ec1724e Fix compiler warnings in where.c and in the TCL test harness. (CVS 5994) by drh · 17 years ago
  18. b06a0b6 Change the TEMP_STORE preprocessor symbol to SQLITE_TEMP_STORE. (CVS 5312) by danielk1977 · 17 years ago
  19. 17b90b5 Remove the xGetTempname() method from the vfs structure. Temp files are now opened by passing a NULL pointer as the filename to xOpen(). (CVS 5190) by danielk1977 · 17 years ago
  20. 861f745 Modify the signatures of the sqlite3_vfs.xAccess and sqlite3_vfs.xCheckReservedLock functions. (CVS 5188) by danielk1977 · 17 years ago
  21. 822a516 Add more version tags to files that lack them. Ticket #3120. (CVS 5137) by danielk1977 · 17 years ago
  22. fb80d20 Change <sqlite3.h> to "sqlite3.h" in #includes (CVS 4847) by mlcreech · 17 years ago
  23. 66a5167 Refactoring the VM. The P3 parameter is changed to P4. A P5 parameter is by drh · 18 years ago
  24. adfb9b0 Add a parameter to specify the size of the output buffer passed to xGetTempname() and xFullPathname(). This, and the previous commit, are changes to the public vfs API introduced in 3.5.0. (CVS 4433) by danielk1977 · 18 years ago
  25. 76ee37f Change the names of xGetTempName and sqlite3OsGetTempName to xGetTempname. To be consistent with xFullPathname and sqlite3OsFullPathname. (CVS 4432) by danielk1977 · 18 years ago
  26. b61c16d Add demo code for a vfs that operates on a single pre-allocated file. (CVS 4429) by danielk1977 · 18 years ago