0
I Use This!
Moderate Activity

Commits : Listings

Analyzed about 7 hours ago. based on code collected about 18 hours ago.
Aug 21, 2025 — Aug 21, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Fix a bug in the publish.sh script that was causing the windows DLL to not be built. (CVS 686)
drh
More... about 24 years ago
Change the name of variable "near" to "nearby" since MSVC mistakenly belieaves that "near" is a keyword. (CVS 685)
drh
More... about 24 years ago
Version 2.6.0 Release 1 (CVS 684)
drh
More... about 24 years ago
Update documentation prior to the release of 2.6.0. (CVS 683)
drh
More... about 24 years ago
Make the automatic database upgrade work even if there are triggers. Add tests for automatic upgrade and for failing if reading a more advanced version of the database. Ticket #107. (CVS 682)
drh
More... about 24 years ago
Fix for ticket #107: Fix a design defect in indices that was causing queries to fail when using an index on a column containing an empty string. This fix is an incompatible file-format change. (CVS 681)
drh
More... about 24 years ago
Fix for ticket #105: Fix the UPDATE command so that it works properly with indexed tables when there is a subquery in the WHERE clause. Add tests to verify correct operation. (CVS 680)
drh
More... about 24 years ago
Fix for ticket #100: Correctly handle ON and USING clauses of JOINs within a VIEW. (CVS 679)
drh
More... about 24 years ago
Fix a syntax error in the tclsqlite.c file. (CVS 678)
drh
More... about 24 years ago
Fix for ticket #102: Honor the ORDER BY clause in subqueries. (CVS 677)
drh
More... about 24 years ago
Fix for ticket #64: Better error reporting in the shell. (CVS 676)
drh
More... about 24 years ago
Partial fix for ticket #96: Return SQLITE_MISUSE from sqlite_exec() if called from a child process with an active transaction that was started in the parent. (CVS 675)
drh
More... about 24 years ago
Fix for ticket #99: Added documentation on the sqlite_mprintf() API. (CVS 674)
drh
More... about 24 years ago
Added a document describing how to do a security audit. (CVS 673)
drh
More... about 24 years ago
Fix for ticket #54: Export additional APIs to the Win32 DLL. (CVS 672)
drh
More... about 24 years ago
Fix for ticket #95: Do not allow automatically created indices (associated with UNIQUE or PRIMARY KEY constraints) to be dropped. (CVS 671)
drh
More... about 24 years ago
Turn of the reporting of datatypes in the 4th callback argument unless the SHOW_DATATYPES pragma is ON. Eliminate the NULL pointer that used to separate the beginning of datatypes from the end of column names so that the callback can test to see whether or not datatypes are provided. This is an incompatible changes, but since the prior behavior was never documented, we will let it in. (CVS 670)
drh
More... about 24 years ago
When reporting back the datatype of columns, use the text of the datatype as it appears in the CREATE TABLE statement, if available. Also: removed the ".reindex" command from the shell. (CVS 669)
drh
More... about 24 years ago
Add support for TEMPORARY views. The code is here but it is mostly untested. (CVS 668)
drh
More... about 24 years ago
In the BTree subsystem, when using pages from the freelist, attempt to select pages close to related pages in order to keep data structures near each other in the database file. This improves access speed in some circumstances. (CVS 667)
drh
More... about 24 years ago
Make the BTree balance() routine a little faster by reusing database pages locally rather than freeing and reallocating them. (CVS 666)
drh
More... about 24 years ago
Version 2.5.6 (CVS 664)
drh
More... about 24 years ago
Fix for Win32: The %p format on Win32 does not prepend a "0x" as it should. (CVS 665)
drh
More... about 24 years ago
More rollback problems: Fix two more errors introduced by checking (410) that can cause database corruption after a ROLLBACK. Also add new tests to make sure everything is working this time. (CVS 663)
drh
More... about 24 years ago
Version 2.5.5 (CVS 662)
drh
More... about 24 years ago
Prepare for the 2.5.5 release. (CVS 661)
drh
More... about 24 years ago
Fix for bug #94: Be sure to journal pages that are added to the freelist then removed from the freelist and reused during the same transaction. (CVS 660)
drh
More... about 24 years ago
All the code is now in place for SQLite to distinguish between NUMERIC and TEXT datatypes. Still need to turn on the new code and test it. (CVS 659)
drh
More... about 24 years ago
Fix for ticket #92: Correct the sqliteExprCompare() function so that is takes into account the iTable and iColumn fields of the Expr structure. Otherwise, "min(a)" and "min(b)" will compare equal to each other in views. (CVS 658)
drh
More... about 24 years ago
Fix for ticket 91: Modify the "publish.sh" script to use the new mingw cross-compiler installed on the development platform. (CVS 657)
drh
More... about 24 years ago