0
I Use This!
Moderate Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 1 day ago.
Feb 14, 2025 — Feb 14, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Speed improvement by avoiding a call to sqliteBtreeLast() when inserting a new row into a table. (CVS 763)
drh
More... over 23 years ago
Fix the URL for pointing to MinGW on the homepage. (CVS 762)
drh
More... over 23 years ago
Minor coding fix in getting the windows platform version, when multithreading (CVS 761) More... over 23 years ago
fix for locking in Windows (CVS 760) More... over 23 years ago
Remove the call to srand() and add better comments to the sqliteOsRandomSeed() routine. Ticket #163. (CVS 759)
drh
More... over 23 years ago
Fix a bug in the left outer join logic. (CVS 758)
drh
More... over 23 years ago
Fix an uninitialized variable that could cause problems when comparing two NULLs. (CVS 757)
drh
More... over 23 years ago
Version 2.7.2 (CVS 756)
drh
More... over 23 years ago
Bump the version number to 2.7.2. (CVS 755)
drh
More... over 23 years ago
Bug fix: When multiple SQL statements were passed into a single sqlite_exec() call, execution speed would decrease for each statement executed because VDBE cursors were not being reused. Now the cursors are reused and execution time is linear. (CVS 754)
drh
More... over 23 years ago
Make sure memory malloced() for structures is aligned on an even byte boundry. Solaris segfaults otherwise. (CVS 753)
drh
More... over 23 years ago
Fix a bug in the OP_MemStore operator of the VDBE. A realloc() might occur but pointer to the old buffer were not being moved over to the new buffer. (CVS 752)
drh
More... over 23 years ago
Modify the sqlite_encode_binary() routine to return the strlen() of the encoded string. Also fix a bug that occurs when attempting to encode a zero-length buffer. (CVS 751)
drh
More... over 23 years ago
Do not put a write lock on the main database file when writing to a temporary table. (CVS 750)
drh
More... over 23 years ago
Rename all tests so that the first part of the test name corresponds to the file that contains that test. This makes it much easier to find a particular test after it fail. (CVS 749)
drh
More... over 23 years ago
Update the SQL language documentation to talk about SELECT DISTINCT. (CVS 748)
drh
More... over 23 years ago
Fix for ticket #147: Honor the ORDER BY and LIMIT clauses in a SELECT even if the destination of that SELECT is a subroutine call. (CVS 747)
drh
More... over 23 years ago
Modify the build process so that the VDBE opcode numbers and the table that contains the opcode names are both automatically generated. This makes it much easier to create new VDBE opcodes. (CVS 1727)
drh
More... over 23 years ago
Modify the build process so that the VDBE opcode numbers and the table that contains the opcode names are both automatically generated. This makes it much easier to create new VDBE opcodes. (CVS 746)
drh
More... over 23 years ago
Fix a memory leak that occurred when sqlite_open() failed. (CVS 745)
drh
More... over 23 years ago
Rewind the checkpoint journal after each statement to avoid allowing the file to become too large. (CVS 744)
drh
More... over 23 years ago
Fix for ticket #146: Correctly handle reads of unused disk blocks at the end of the file. (CVS 743)
drh
More... over 23 years ago
Always fill in the 5th parameter to sqlite_exec if there is an error. (CVS 742)
drh
More... over 23 years ago
Add documentation on NULL handling in SQLite versus other SQL database engines. (CVS 741)
drh
More... over 23 years ago
Detect when the test scripts are being run as root and issue an appropriate error message. (CVS 740)
drh
More... over 23 years ago
Relax the locking requirements on BTree cursors. Any number of read and write cursors can be open at the same time now, but a write cannot occur as long as one or more read cursors are open.
drh
More... over 23 years ago
Parse foreign key constraints and populate internal data structures appropriately. Constraints are still not enforced. (CVS 738)
drh
More... over 23 years ago
Version 2.7.1 (CVS 737)
drh
More... over 23 years ago
Change the version number for release 2.7.1. (CVS 736)
drh
More... over 23 years ago
Initial checking of two new test files: format3.test and memleak.test. (CVS 735)
drh
More... over 23 years ago