๐ŸŒ AIๆœ็ดข & ไปฃ็† ไธป้กต
  1. 597a8c5 Insert additional tab character. by mistachkin ยท 13 years ago win32Resources
  2. 0f104d5 Linking and cleaning fixes for the tclsqlite3.exe target in the MSVC makefile. by mistachkin ยท 13 years ago
  3. 4d9d1f4 Add Win32 version resources to the applicable binaries built by the MSVC makefile. by mistachkin ยท 13 years ago
  4. e0d058c In the spellfix phonehash() function, add letter W into the same character by drh ยท 13 years ago
  5. 19038f1b7 Changes for ERROR_PATH_NOT_FOUND in addition to ERROR_FILE_NOT_FOUND in by drh ยท 13 years ago
  6. 373cfbc Exclude the atof1.test test script from the valgrind permutations test since by drh ยท 13 years ago
  7. 9454876 Fix an out-of-bounds read in the demonstration code in test_spellfix.c. by dan ยท 13 years ago
  8. b5b407e Fix a typo in a comment in vdbe.c. No changes to code. by drh ยท 13 years ago
  9. 67c7014 Fix a case where SQLite was failing to detect a syntax error in queries like "SELECT ... FROM (<select-1> UNION ALL <select-2>)" when <select-1> and <select-2> return different numbers of result columns. by dan ยท 13 years ago
  10. af52973 Issue a log message if the temporary directory has not been set when running on WinRT. by mistachkin ยท 13 years ago
  11. 52fd8e1 Enable the use of a simpler command line when cross-compiling in the MSVC build environment. by mistachkin ยท 13 years ago
  12. 7a5d80e Formatting changes to the C code example in the documentation for by drh ยท 13 years ago
  13. 40e6319 Update API docs to include notes about the WinRT temporary directory. No changes to code. by mistachkin ยท 13 years ago
  14. 67ceaa6 Add to #undef statements to the command-line shell, go make sure that the by drh ยท 13 years ago
  15. 04f2e34 Fix an incorrect assert in the virtual table logic - it could fire following by drh ยท 13 years ago
  16. d557843 Fix all known instances of 'repeated the' style typos in comments. No changes to code. by mistachkin ยท 13 years ago
  17. b0367fb Fix a harmless compiler warning. by drh ยท 13 years ago
  18. f0b9729 When the same index is used for all OR-terms in a WHERE clause, then try to by drh ยท 13 years ago
  19. d40e208 Move field WhereLevel.pCovidx inside the union to WhereLevel.u.pCovidx. by drh ยท 13 years ago multi-or-covering-index
  20. 7b36ba3 Remove a NEVER() that is in fact reachable on an OOM. This probably by drh ยท 13 years ago
  21. 606bb3a Another test for whereD.test. by dan ยท 13 years ago
  22. 8993391 Add extra tests to whereD.test. by dan ยท 13 years ago
  23. 0efb72c Fix a problem to do with multi-or queries and automatic indexes. by dan ยท 13 years ago
  24. 8fea5f3 More test cases for OR-optimization covering indices. by drh ยท 13 years ago
  25. 2797c21 Additional test cases for OR-optimization with covering indices, including by drh ยท 13 years ago
  26. bfca6a4 Experimental change to support the covering index optimization for queries with OR terms in the WHERE clause that search a single index more than once. by dan ยท 13 years ago
  27. fb0a608 Merge the nested aggregate query enhancements into trunk. by drh ยท 13 years ago
  28. 319a170 Merge changes for the new sqlite3_win32_set_directory API to trunk. by mistachkin ยท 13 years ago
  29. ed551b9 Add test cases and fix bugs associated with the previous check-in by drh ยท 13 years ago nested-agg
  30. 030796d Further improvements to the processing of nested aggregate queries. by drh ยท 13 years ago
  31. 2f7d5d8 Modify the MSVC makefile to make it easier to select the heap subsystem to use. by mistachkin ยท 13 years ago
  32. 484dbef Add assert to check that the memory block for the previous directory value was allocated via sqlite3_malloc or related function. by mistachkin ยท 13 years ago win32SetDir
  33. 6154068 Added sqlite3_win32_set_directory API to assist in portability to WinRT. by mistachkin ยท 13 years ago
  34. 0789377 Update the spellfix virtual table so that all OOM errors are reported out by drh ยท 13 years ago
  35. 4dc3d73 Add the SQLITE_DISABLE_FTS4_DEFERRED compile time option. by dan ยท 13 years ago
  36. a6b0a9c Change the checkSpacing utility program to ignore whitespace at end-of-line by drh ยท 13 years ago
  37. fc30b04 Silence harmless compiler warnings in the test code. by drh ยท 13 years ago
  38. f2f105d Remove tab characters from source code files. Replace them with spaces. by drh ยท 13 years ago
  39. 36ce6d2 Add a command-line program to tool/ that will check source code files for by drh ยท 13 years ago
  40. bcebd86 Clarify that the number-of-bytes parameter to sqlite3_bind_blob() must by drh ยท 13 years ago
  41. 8ef0c1f Fix MSVC compiler warning in the spellfix module. Also, add an assert. by mistachkin ยท 13 years ago
  42. 6f92833 Skip defining some WAL specific things in the Win32 VFS code when compiling without WAL support. Also, fix an example command line in the MSVC makefile. by mistachkin ยท 13 years ago
  43. 342ced4 Changes to the spellfix test script to make the results deterministic. by drh ยท 13 years ago
  44. e74f465 Change autoconf so that the --with-tcl=DIR option will override the by drh ยท 13 years ago
  45. 8b64b39 Silence three harmless compiler warnings in vdbesort.c. by drh ยท 13 years ago
  46. ec73930 Add an assert() to the btree rebalancer in order to silence a by drh ยท 13 years ago
  47. c16eb69 Update the spellfix virtual table to the latest development code. by drh ยท 13 years ago
  48. 1700b1c Refer to the file mapping Win32 API functions only when absolutely necessary. by mistachkin ยท 13 years ago
  49. a0aa13b Refer to the WaitForSingleObjectEx and SetFilePointerEx Win32 functions only for platforms where they are going to be used. by mistachkin ยท 13 years ago
  50. 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
  51. 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
  52. acf239b Change to securedel2.test so that it works even if SQLITE_DEFAULT_AUTOVACUUM=1 is defined. by dan ยท 13 years ago
  53. 07f5479 Simplifications to the sorter to support full-coverage testing. by drh ยท 13 years ago
  54. 2aba5d9 Add extra tests for secure-delete mode. by dan ยท 13 years ago
  55. 38d0730 Fix a bug in hash.c introduced by [305b66672653]. by dan ยท 13 years ago
  56. 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
  57. 809badc Fix a bug in walthread.test causing intermittent failures. by dan ยท 13 years ago
  58. ab8c4cf Modify VSIX package generation tool to put the PDB files in the Debug directory. by mistachkin ยท 13 years ago
  59. 09ac7ec Merge the sorter-coalesce-writes branch into the trunk. This improves CREATE INDEX performance on some platforms. by dan ยท 13 years ago
  60. 243be2b Fix a crash that could follow an OOM condition. by dan ยท 13 years ago sorter-coalesce-writes
  61. 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
  62. 8c5287e Update sorter-coalesce-writes branch with latest trunk changes. by dan ยท 13 years ago
  63. e2e2ab3 Update description strings in the VSIX package. by mistachkin ยท 13 years ago
  64. a36421a Correct comment about WinRT compiler define. No changes to code. by mistachkin ยท 13 years ago
  65. 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
  66. 50afa2a Make the list of platforms dynamic in the SDK manifest inside the VSIX package. by mistachkin ยท 13 years ago
  67. 391b364 Modify metadata for the VSIX package and add tooling support for PDBs. by mistachkin ยท 13 years ago
  68. 6809c96 Replace a few sqlite3_malloc()+memset() sequences with calls to sqlite3MallocZero(). by dan ยท 13 years ago
  69. 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
  70. 78496d5 Minor adjustments to the multi-platform build tool for MSVC. by mistachkin ยท 13 years ago
  71. f2bc438 For the clean makefile targets, delete the generated VSIX file as well. by mistachkin ยท 13 years ago
  72. fd0ba2a Modify the multi-platform build tool for MSVC to support the latest RC version. by mistachkin ยท 13 years ago
  73. 31856a3 Add tool to build the core DLL for multiple platforms using MSVC. by mistachkin ยท 13 years ago
  74. 4868019 Add tool to generate a VSIX package usable by Visual Studio 2012 RC. by mistachkin ยท 13 years ago
  75. 9d0c0ea Update some comments in vdbesort.c. by dan ยท 13 years ago
  76. c041c16 Mark parameters to sorter interfaces as const where appropriate. by drh ยท 13 years ago
  77. 35d8ac9 Add another define to the MSVC makefile that is sometimes required to build cleanly for WinRT. by mistachkin ยท 13 years ago
  78. 2b596da Refactor field names in the SelectDest object to make them distinct and easier by drh ยท 13 years ago
  79. 407fae0 Fix an edge case in vdbesort.c. by dan ยท 13 years ago
  80. 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
  81. 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
  82. 610b8d8 Amplification of a comment in wal.c. Change the aReadMark[] processing so by drh ๏ฟฝ๏ฟฝ 13 years ago
  83. 206d0b6 Merge the spellfix1 changes for supporting matchlen into trunk. by drh ยท 13 years ago
  84. 13a2bed Fix compiler warnings about unused code in spellfix. Fix the editDist3Core() by drh ยท 13 years ago spellfix-matchlen
  85. 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
  86. 5ad17e5 Merge trunk changes. by dan ยท 13 years ago
  87. 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
  88. 8512752 Add the "matchlen" column to the spellfix1 virtual table. by dan ยท 13 years ago
  89. 2deb165 Update test_spellfix.c with latest changes. by dan ยท 13 years ago
  90. bd58d5f Setup the necessary library paths for cross-compilation with MSVC. by mistachkin ยท 13 years ago
  91. 228aeff Simplify usage of some linker options in the MSVC makefile. by mistachkin ยท 13 years ago
  92. 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
  93. 2f3de32 Another changes to the shell in support of SQLITE_OMIT_AUTOINIT. by drh ยท 13 years ago
  94. bbb0be8 Update the shell so that it works with SQLITE_OMIT_FLOATING_POINT and by drh ยท 13 years ago
  95. 5afbd60 Remove code that was incorrectly changing SQLITE_MISUSE errors into SQLITE_OK by drh ยท 13 years ago
  96. ed68801 Add the sqlite3_close_v2() interface (from the deferred-close branch) that by drh ยท 13 years ago
  97. 5675202 Merge changes to trunk that ensure that floating point values are exactly by drh ยท 13 years ago
  98. 20b1ff0 Fix spelling typo. by mistachkin ยท 13 years ago
  99. f1c6bc5 Remove more references to OS/2. by mistachkin ยท 13 years ago
  100. c722a2c Disable the atof1.test module when compiling on MSVC. by drh ยท 13 years ago floating-point-conversions