๐ŸŒ AIๆœ็ดข & ไปฃ็† ไธป้กต
  1. dcc3f4b Disable compiler intrinsics when using the Intel C Compiler. by drh ยท 8 years ago icc-fix
  2. 08f1efe Add the "PRAGMA secure_delete=FAST" option, which overwrites most deleted by drh ยท 8 years ago
  3. a690ff3 Change the error message text for SQLITE_ERROR to omit the part about by drh ยท 8 years ago
  4. a7a0bfa In the command-line shell, when running ".schema" give a sensible error when by drh ยท 8 years ago
  5. d5eae66 Add new PRAGMAs: "function_list", "module_list", and "pragma_list". All are by drh ยท 8 years ago
  6. 8ae11aa Add the "Pragma_list" pragma. Put all three pragmas created on this branch by drh ยท 8 years ago list-pragmas
  7. 40cf27c Enhance the sqlite3VdbeMultiLoad() interface to automatically generate the by drh ยท 8 years ago
  8. ab53bb6 Add new pragmas: "function_list" and "module_list" by drh ยท 8 years ago
  9. d108667 Exploit the fact that Expr.pRight and Expr.x are never used at the same time by drh ยท 8 years ago
  10. c2d14a9 More efficient and compact implementation of walkExpr(). by drh ยท 8 years ago
  11. b98a2e3 More aggressive use of EP_Leaf on expression nodes, to help prune searches. by drh ยท 8 years ago
  12. 3da70a6 Very slightly smaller and faster sqlite3WalkSelect(). by drh ยท 8 years ago
  13. 9d8e401 More compact implementation of the typeof() SQL function. by drh ยท 8 years ago
  14. ebaaa67 Avoid unnecessary upper-to-lower case conversion for function names when by drh ยท 8 years ago
  15. 3b02e0f Small size reduction in findCollSeqEntry(). by drh ยท 8 years ago
  16. 666e866 Avoid unnecessary calls to sqlite3GetCollSeq() for a small performance gain. by drh ยท 8 years ago
  17. 07a3b11 Slightly more compact implementation of the byte-code generator for by drh ยท 8 years ago
  18. 169a689 Small performance increase in sqlite3SrcListAppend(). by drh ยท 8 years ago
  19. a35d851 Make the hash table implementation a little smaller and faster. by drh ยท 8 years ago
  20. 269ba80 Add the count-of-view optimization when compiled using by drh ยท 8 years ago
  21. cde336e Attempt to improve documentation on sqlite3_column_ and sqlite3_value_ by drh ยท 8 years ago
  22. fd76b71 Improved documentation for sqlite3_value_type(). by drh ยท 8 years ago
  23. a501f7d In the command-line shell, add the -quote option to start up in quote mode. by drh ยท 8 years ago
  24. c31b79d Remove the ".explain" command from the ".help" output of the command-line by drh ยท 8 years ago
  25. 1d1982c Edit comments in sqlite.h.in used for generating documentation, to improve by drh ยท 8 years ago
  26. 01e6d54 Add interfaces sqlite3_prepare_v3() and sqlite3_prepare16_v3() with the by drh ยท 8 years ago
  27. c6603af Rename the "stmts" virtual table to just "stmt" without the final "s". by drh ยท 8 years ago
  28. c799833 Add the stmts virtual table to testfixture builds. Add new compile-time by drh ยท 8 years ago
  29. 366050e Add the "stmts" virtual table to the amalgamation, activated when compiled by drh ยท 8 years ago
  30. 00d11d4 Add the SQLITE_STMTSTATUS_REPREPARE and SQLITE_STMTSTATUS_RUN options to by drh ยท 8 years ago stmts-vtab
  31. 5aa307e Fix the exprCompareVariable() routine so that it works for non-UTF8 text. by drh ยท 8 years ago partial-index-variables
  32. c080422 Alternative implementation of exprCompareVariable(). Need to run tests on by drh ยท 8 years ago
  33. 3e380a4 Make the query planners use of partial indexes based on bound variables by drh ยท 8 years ago
  34. 37f9060 Merge the in the latest enhancements from trunk. by drh ยท 8 years ago
  35. d0bbe4e Incorporate recent trunk changes. by drh ยท 8 years ago prepare_v3
  36. f00f530 Build the "stmts" virtual table into the amalgamation. It is active only by drh ยท 8 years ago
  37. 6559e2c Minor tweak to the SQL grammar to make the parser tables a few bytes smaller. by drh ยท 8 years ago
  38. 6e11b16 Simplify error handling logic in sqlite3_exec() to save about 40 bytes. by drh ยท 8 years ago
  39. 59a386e Minor code simplification in the ALTER TABLE logic. by drh ยท 8 years ago
  40. 3144df1 Avoid an unnecessary call to sqlite3XPrintf() in the code generator, for by drh ยท 8 years ago
  41. a5e906f Add SQLITE_DBCONFIG_ENABLE_QPSG that forces the query planner stability by drh ยท 8 years ago
  42. 210ec4c Fix a virtual table problem that can occur when the vtab is on the RHS of a by dan ยท 8 years ago
  43. af38cdb Add the -withoutnulls option to the "db eval" method in the TCL interface. by drh ยท 8 years ago
  44. d5fbde8 The ".import" command of the shell, and the csv virtual table extension both by drh ยท 8 years ago
  45. 7df7475 Make sure sqlite3VdbeSetVarmask() is never invoked when QPSG is enabled. by drh ยท 8 years ago enable-QPSG
  46. 169dd92 Add the SQLITE_DBCONFIG_ENABLE_QPSG option to activate the query planner by drh ยท 8 years ago
  47. 5aa550c Consider the values bound to SQL variables when determining whether or not a by dan ยท 8 years ago
  48. 7f2d1cd Make sure the config.h header is included by ctime.c, if that header exists. by drh ยท 8 years ago
  49. 54ac445 Query planner tuning: When deciding between two plans with the same cost, by drh ยท 8 years ago
  50. 45e7d7d Make sure enough memory is allocated for pathological quoting cases when by drh ยท 8 years ago
  51. c456a76 When generating individual loops for each ORed term of an OR scan, move any by dan ยท 8 years ago or-optimization
  52. c45fdb2 Enable pragma virtual tables for the integrity_check, quick_check, and by drh ยท 8 years ago
  53. f383f35 Rename the azCompileOpt global constant to avoid a harmless compiler warning by drh ยท 8 years ago
  54. bd11a2a Ensure that the query planner knows that any column of a flattened LEFT JOIN by dan ยท 8 years ago
  55. a5907a8 Experimental "PRAGMA secure_delete=FAST" pragma. The intent is to overwrite by drh ยท 8 years ago fast-secure-delete
  56. 40db2fd Fix a missing comma in the previous check-in. by drh ยท 8 years ago
  57. 814aad6 Ensure that the value of the THREADSAFE symbol is always included when by dan ยท 8 years ago ctime-refactor
  58. da1f49b Rework the code in ctime.c a bit to report on more compile time options. And by dan ยท 8 years ago
  59. ba87c6c Minor refactoring change to clarify how ATTACH works. No functional changes. by drh ยท 8 years ago
  60. 76cf858 Prevent pagesize changes on VACUUM in encrypted databases even when running by drh ยท 8 years ago
  61. 0942559 Move the "shell_add_schema()" SQL function used by the ".schema" command by drh ยท 9 years ago
  62. 90cdec0 Fix harmless compiler warnings in the shell.c file by drh ยท 9 years ago
  63. 594ccd0 Improvements to the ".tables" command in the command-line shell so that by drh ยท 9 years ago
  64. 20c9c3f In the command-line shell, enhance the ".schema" command show that it by drh ยท 9 years ago
  65. 6e3bccd Fix the processing of double-negatives in WHERE clause constraints with by drh ยท 9 years ago
  66. 56790ea Fix an off-by-one error that messes up the display of loop codes in the by drh ยท 9 years ago
  67. eafc6df When reusing a materialized view, make sure the estimated number of by drh ยท 9 years ago
  68. c62aab5 Fix a potential null-pointer deference following OOM introduced by by drh ยท 9 years ago
  69. e9acf4b Merge enhancements and fixes from trunk. by drh ยท 9 years ago
  70. c097b30 Update the documentation to make it clear that the table name parameter by drh ยท 9 years ago
  71. c5d353f Adjust the implementation of the ".selftest" feature of the shell to avoid by drh ยท 9 years ago
  72. d96cc6f Add a testcase() to confirm that an OOM on sqlite3DbStrNDup() is handled by drh ยท 9 years ago
  73. ca66f6c Ensure pointer map entries are always added when a row that does use overflow by dan ยท 9 years ago
  74. cc97ca4 In SQLITE_DEBUG mode, attempt to log the page number of the database that by drh ยท 9 years ago
  75. 0282c03 Merge in trunk enhancements. by drh ยท 9 years ago
  76. d1417ee Add the SQLITE_DEFAULT_ROWEST compile-time option for changing the estimated by drh ยท 9 years ago
  77. b1d66c5 Fix a bug in test_fs.c that occurs when the first component of a path contains by dan ยท 9 years ago
  78. 64bf76d Fix the column width deduction logic in the command-line shell to account by drh ยท 9 years ago
  79. 4c88348 Initialize a variable to zero to prevent an (incorrect) compiler warning of by drh ยท 9 years ago
  80. 170ad68 Change the name of the OP_Seek opcode into OP_DeferredSeek for better by drh ยท 9 years ago
  81. 2c2f392 Add interfaces sqlite3_prepare_v3() and sqlite3_prepare16_v3() with the by drh ยท 9 years ago
  82. cdbb126 Add the SQLITE_STMTSTATUS_MEMUSED opcode to sqlite3_stmt_status() by drh ยท 9 years ago
  83. 3528f6b Add the SQLITE_STMTSTATUS_MEMUSED option for sqlite3_stmt_status() that reports by drh ยท 9 years ago stmtstatus-memused
  84. d4ab003 Avoid allocating excess memory to the KeyInfo objects. by drh ยท 9 years ago
  85. d5bdd5e Remove a completely unnecessary memset() from the INSERT code generator. by drh ยท 9 years ago
  86. b8a1290 Very small performance increase in sqlite3VdbeSetNumCols(). by drh ยท 9 years ago
  87. 02f18cc Reorder fields in the PgHdr object for a performance increase. by drh ยท 9 years ago
  88. a8b9793 Avoid unnecessary memory zeroing during expression list allocation. by drh ยท 9 years ago
  89. d03257c Size and performance optimizations to sqlite3ResolveExprNames(). by drh ยท 9 years ago
  90. 2ab792e Change sqlite3BtreeNext() and sqlite3BtreePrevious() so that they return by drh ยท 9 years ago
  91. e70d01f More efficient error handling and reset in the binding mechanism. by drh ยท 9 years ago
  92. 77f6af2 Avoid unnecessary fstat() calls to determine the database size when by drh ยท 9 years ago io-opt
  93. 5f5a2d1 Avoid unnecessary calls to fstat() to determine the database file size. by drh ยท 9 years ago
  94. 8abc54e Fix a typo in a comment. No code changes. by drh ยท 9 years ago
  95. 979dd1b Optimizations to the Walker object and its methods to make the code a little by drh ยท 9 years ago
  96. d8a2956 Correctly initialize the iSelectId of FROM clause terms that are a self by drh ยท 9 years ago
  97. e16a350 Improve shell help text for the '.open' command. by mistachkin ยท 9 years ago
  98. ae2ac85 Smaller and faster vdbeSorterCompareText(). by drh ยท 9 years ago
  99. 14e845a Small performance increase and size decrease in the btreeInitPage() routine. by drh ยท 9 years ago
  100. 137c46f Merge the LEFT JOIN query flattener fixes from 3.19.2. by drh ยท 9 years ago