๐ŸŒ AIๆœ็ดข & ไปฃ็† ไธป้กต
  1. 7d57c00 Experimental change to speed up ORDER BY clauses that sort based on a single expression. by dan ยท 13 years ago sorter-exp
  2. 8b64b39 Silence three harmless compiler warnings in vdbesort.c. by drh ยท 13 years ago
  3. ec73930 Add an assert() to the btree rebalancer in order to silence a by drh ยท 13 years ago
  4. c16eb69 Update the spellfix virtual table to the latest development code. by drh ยท 13 years ago
  5. 1700b1c Refer to the file mapping Win32 API functions only when absolutely necessary. by mistachkin ยท 13 years ago
  6. a0aa13b Refer to the WaitForSingleObjectEx and SetFilePointerEx Win32 functions only for platforms where they are going to be used. by mistachkin ยท 13 years ago
  7. 7d6885a When populating an index b-tree as part of a CREATE INDEX or REINDEX statement, distribute cells between up to three siblings in balance_nonroot() instead of four. This produces identical database files, but is slightly faster. by dan ยท 13 years ago
  8. f64cc49 When building a b-tree as part of a CREATE INDEX or REINDEX statement, attempt to pack keys into pages as tightly as possible. by dan ยท 13 years ago
  9. acf239b Change to securedel2.test so that it works even if SQLITE_DEFAULT_AUTOVACUUM=1 is defined. by dan ยท 13 years ago
  10. 07f5479 Simplifications to the sorter to support full-coverage testing. by drh ยท 13 years ago
  11. 2aba5d9 Add extra tests for secure-delete mode. by dan ยท 13 years ago
  12. 38d0730 Fix a bug in hash.c introduced by [305b66672653]. by dan ยท 13 years ago
  13. 81f0740 Do not run test script spellfix.test if SQLITE_OMIT_VIRTUAL_TABLE is defined. Fix walro.test so that it works if DEFAULT_AUTOVACUUM is defined. by dan ยท 13 years ago
  14. 809badc Fix a bug in walthread.test causing intermittent failures. by dan ยท 13 years ago
  15. ab8c4cf Modify VSIX package generation tool to put the PDB files in the Debug directory. by mistachkin ยท 13 years ago
  16. 09ac7ec Merge the sorter-coalesce-writes branch into the trunk. This improves CREATE INDEX performance on some platforms. by dan ยท 13 years ago
  17. 243be2b Fix a crash that could follow an OOM condition. by dan ยท 13 years ago sorter-coalesce-writes
  18. 428c218 When reusing pages as part of creating a new index, allocate the leaves from each free-list trunk page in ascending order, instead of trying to maximize localization for each individual allocation. This increases the chance that pages will be written to disk in ascending order by a large CREATE INDEX statement, improving overall performance. by dan ยท 13 years ago
  19. 8c5287e Update sorter-coalesce-writes branch with latest trunk changes. by dan ยท 13 years ago
  20. e2e2ab3 Update description strings in the VSIX package. by mistachkin ยท 13 years ago
  21. a36421a Correct comment about WinRT compiler define. No changes to code. by mistachkin ยท 13 years ago
  22. dfbfbff Fix typos of function names sqlite3_result_error_toobig and sqlite3_result_error_nomem in the documentation. No changes to code. by mistachkin ยท 13 years ago
  23. 50afa2a Make the list of platforms dynamic in the SDK manifest inside the VSIX package. by mistachkin ยท 13 years ago
  24. 391b364 Modify metadata for the VSIX package and add tooling support for PDBs. by mistachkin ยท 13 years ago
  25. 6809c96 Replace a few sqlite3_malloc()+memset() sequences with calls to sqlite3MallocZero(). by dan ยท 13 years ago
  26. 0b5ae72 Improve consistency in handling of build outputs and native library paths in the multi-platform build tool for MSVC. by mistachkin ยท 13 years ago
  27. 78496d5 Minor adjustments to the multi-platform build tool for MSVC. by mistachkin ยท 13 years ago
  28. f2bc438 For the clean makefile targets, delete the generated VSIX file as well. by mistachkin ยท 13 years ago
  29. fd0ba2a Modify the multi-platform build tool for MSVC to support the latest RC version. by mistachkin ยท 13 years ago
  30. 31856a3 Add tool to build the core DLL for multiple platforms using MSVC. by mistachkin ยท 13 years ago
  31. 4868019 Add tool to generate a VSIX package usable by Visual Studio 2012 RC. by mistachkin ยท 13 years ago
  32. 9d0c0ea Update some comments in vdbesort.c. by dan ยท 13 years ago
  33. c041c16 Mark parameters to sorter interfaces as const where appropriate. by drh ยท 13 years ago
  34. 35d8ac9 Add another define to the MSVC makefile that is sometimes required to build cleanly for WinRT. by mistachkin ยท 13 years ago
  35. 2b596da Refactor field names in the SelectDest object to make them distinct and easier by drh ยท 13 years ago
  36. 407fae0 Fix an edge case in vdbesort.c. by dan ยท 13 years ago
  37. 3b2c9b3 Modify the code in vdbesort.c so that most reads and writes to temporary files are aligned page-sized blocks. by dan ยท 13 years ago
  38. 5373b76 Ensure that there is always at least one aReadMark slot usable by an unprivileged reader while a checkpoint is running. Also, if one or more transactions are recovered from a log file, initialize one of the aReadMark slots to contain mxFrame as part of the recovery process. by dan ยท 13 years ago
  39. 610b8d8 Amplification of a comment in wal.c. Change the aReadMark[] processing so by drh ยท 13 years ago
  40. 206d0b6 Merge the spellfix1 changes for supporting matchlen into trunk. by drh ยท 13 years ago
  41. 13a2bed Fix compiler warnings about unused code in spellfix. Fix the editDist3Core() by drh ยท 13 years ago spellfix-matchlen
  42. b4a553e Fix a bug in the phonetic-hash routine in spellfix1: Even if the first character of a word is deemed to be "silent", do not apply the special handling intended for the first character of each word to the second. by dan ยท 13 years ago
  43. 5ad17e5 Merge trunk changes. by dan ยท 13 years ago
  44. 5885e76 If a specific database is nominated as part of a "PRAGMA integrity_check" or "PRAGMA quick_check" command, search for problems in the nominated database only. i.e. "PRAGMA main.quick_check" now only scans the main database, not all attached databases as before. by dan ยท 13 years ago
  45. 8512752 Add the "matchlen" column to the spellfix1 virtual table. by dan ยท 13 years ago
  46. 2deb165 Update test_spellfix.c with latest changes. by dan ยท 13 years ago
  47. bd58d5f Setup the necessary library paths for cross-compilation with MSVC. by mistachkin ยท 13 years ago
  48. 228aeff Simplify usage of some linker options in the MSVC makefile. by mistachkin ยท 13 years ago
  49. e37f99c Make use of the predefined nmake command macro CC when possible instead of the literal string 'cl.exe'. Improve support for cross-compilation. Eliminate problematic use of double quotes in macro preprocessing expressions. by mistachkin ยท 13 years ago
  50. 2f3de32 Another changes to the shell in support of SQLITE_OMIT_AUTOINIT. by drh ยท 13 years ago
  51. bbb0be8 Update the shell so that it works with SQLITE_OMIT_FLOATING_POINT and by drh ยท 13 years ago
  52. 5afbd60 Remove code that was incorrectly changing SQLITE_MISUSE errors into SQLITE_OK by drh ยท 13 years ago
  53. ed68801 Add the sqlite3_close_v2() interface (from the deferred-close branch) that by drh ยท 13 years ago
  54. 5675202 Merge changes to trunk that ensure that floating point values are exactly by drh ยท 13 years ago
  55. 20b1ff0 Fix spelling typo. by mistachkin ยท 13 years ago
  56. f1c6bc5 Remove more references to OS/2. by mistachkin ยท 13 years ago
  57. c722a2c Disable the atof1.test module when compiling on MSVC. by drh ยท 13 years ago floating-point-conversions
  58. 42c96dc Increase the version number to 3.7.14 and rerun autoconf by drh ยท 13 years ago
  59. d1b0afc Fix the SQLITE_ZERO_MALLOC compile-time option so that it works on windows. by drh ยท 13 years ago
  60. fe7b2bc Merge several compiler compatibility fixes to trunk. by mistachkin ยท 13 years ago
  61. 83905c9 Remove support for OS/2 from the source tree. by drh ยท 13 years ago
  62. 8d967a9 When linking to the MSVC runtime library, use the debug library when necessary. Also, link dynamically to the MSVC runtime library when required (e.g. WinRT) or requested via the USE_CRT_DLL build macro. by mistachkin ยท 13 years ago
  63. 3aaa4cd Add tests to check that the "unicode61" and "icu" tokenizers both identify white-space codepoints outside the ASCII range. by dan ยท 13 years ago
  64. 2b434a7 Move variable declaration to fix compilation with MSVC. by mistachkin ยท 13 years ago
  65. 4aaf155 Fix an incorrect testcase for the round() function. All tests are passing by drh ยท 13 years ago
  66. 4ef9413 Round-trip conversions of real->text->real are now lossless on x64 with GCC. by drh ยท 13 years ago
  67. 72b3fbc Improved accuracy on text-to-real and real-to-text conversions. Most by drh ยท 13 years ago
  68. 89f1508 Improved rounding accuracy on test-to-float conversions. by drh ยท 13 years ago
  69. 2ae26b7 Fix a problem with identifying white-space characters outside of the ascii range in the ICU tokenizer. by dan ยท 13 years ago
  70. 9721c21 Allow the SQLITE_API macro to apply to the sqlite3_win32_sleep function. by mistachkin ยท 13 years ago compiler-compat
  71. c8bde37 Fix a few compilation issues that can occur with certain compilers (e.g. GCC 2.95.3, MSVC). by mistachkin ยท 13 years ago
  72. 8ba0d1c In Lemon, when comparing the output to the *.h file to see if it has changed, by drh ยท 14 years ago
  73. 4104337 Fix compiler warning. by mistachkin ยท 14 years ago deferred-close
  74. 46daba8 Version 3.7.13 by drh ยท 14 years ago version-3.7.13
  75. 4b8213d Add missing targets for fts3_unicode.lo and fts3_unicode2.lo to Makefile.in. by dan ยท 14 years ago
  76. 1c30deb Fix an obscure memory leak in FTS3 that can come about when two memory by drh ยท 14 years ago
  77. b6a69a6 Fix a problem in vtab1.test causing it to fail when run with any permutation that executes SQL within the tcl "sqlite3" command. by dan ยท 14 years ago
  78. 155812d Documentation and evidence mark updates. Remove a redundant assert(). by drh ยท 14 years ago
  79. 0b8dcfa Fix a problem preventing a shared in-memory database from being attached to a read-only connection. by dan ยท 14 years ago
  80. 25cdf46 Add the "tokenchars=" and "separators=" options, for customizing the set of characters considered to be token separators, to the unicode61 tokenizer. by dan ยท 14 years ago
  81. a879342 Fix a malloc/free mismatch in pager.c (sqlite3_free() called on a buffer allocated by sqlite3DbMalloc()). by dan ยท 14 years ago
  82. 4bd6952 Provide an (undocumented) compile-time option to disable the page cache by drh ยท 14 years ago
  83. 5e0c493 Fix harmless Clang warnings. by drh ยท 14 years ago
  84. 617235b Fix an #if that is applicable to WinRT, even thought it is currently disabled by another #if. by mistachkin ยท 14 years ago
  85. cc71645 Merge the changes need to compile on WinRT into trunk. by drh ยท 14 years ago
  86. 2c897e3 Disable FTS unicode61 by default. It is enabled by specifying compile time option SQLITE_ENABLE_FTS4_UNICODE61. by dan ยท 14 years ago
  87. 754d3ad Have the FTS unicode61 strip out diacritics when tokenizing text. This can be disabled by specifying the tokenizer option "remove_diacritics=0". by dan ยท 14 years ago
  88. f053054 Avoid resetting the shared-cache schema when on of the connections using by drh ยท 14 years ago
  89. a19b896 Make sure the Index.azColl pointers do not point to connection-specific memory. by drh ยท 14 years ago shared-schema
  90. bae591a Merge the latest trunk changes into shared-schema branch. Also fix a C99-ism by drh ยท 14 years ago
  91. 98c78ea Add sqlite3_quota_ferror() and sqlite3_quota_file_available() interfaces to by drh ยท 14 years ago
  92. d3babb5 Correct docs regarding use of malloc and free by the Windows VFS layer. No changes to code. by mistachkin ยท 14 years ago
  93. 401e915 When not compiling for WinRT, skip using a couple Win32 APIs unavailable when compiling with MinGW. by mistachkin ยท 14 years ago
  94. 167cd6a Revert sqlite3_close() to legacy behavior. Create a new sqlite3_close_v2() by drh ยท 14 years ago
  95. 4245c40 The sqlite3_close() interface returns SQLITE_OK even if there are outstanding by drh ยท 14 years ago
  96. 1e6eea9 Update several APIs to enable compilation with newer revisions of WinRT. by mistachkin ยท 14 years ago
  97. ed46682 Avoid calling fchown() if the process is not running as root. by drh ยท 14 years ago
  98. 1b28b89 Link the NDEBUG macro to SQLITE_DEBUG so that when SQLITE_DEBUG is defined, by drh ยท 14 years ago
  99. 666a1d8 Fix a typo (a repeated "or") in the documentation. No changes to code. by drh ยท 14 years ago
  100. d3d8c04 Changes some NDEBUG macros to SQLITE_DEBUG in os_unix.c. The is a notational by drh ยท 14 years ago