0
I Use This!
Moderate Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 2 days ago.
Aug 25, 2025 — Aug 25, 2026
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
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... almost 24 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... almost 24 years ago
Fix a memory leak that occurred when sqlite_open() failed. (CVS 745)
drh
More... almost 24 years ago
Rewind the checkpoint journal after each statement to avoid allowing the file to become too large. (CVS 744)
drh
More... almost 24 years ago
Fix for ticket #146: Correctly handle reads of unused disk blocks at the end of the file. (CVS 743)
drh
More... almost 24 years ago
Always fill in the 5th parameter to sqlite_exec if there is an error. (CVS 742)
drh
More... almost 24 years ago
Add documentation on NULL handling in SQLite versus other SQL database engines. (CVS 741)
drh
More... almost 24 years ago
Detect when the test scripts are being run as root and issue an appropriate error message. (CVS 740)
drh
More... almost 24 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... almost 24 years ago
Parse foreign key constraints and populate internal data structures appropriately. Constraints are still not enforced. (CVS 738)
drh
More... almost 24 years ago
Version 2.7.1 (CVS 737)
drh
More... almost 24 years ago
Change the version number for release 2.7.1. (CVS 736)
drh
More... almost 24 years ago
Initial checking of two new test files: format3.test and memleak.test. (CVS 735)
drh
More... almost 24 years ago
Fix for ticket #145: Include the func.c source file in the build of testfixture so that the "randstr()" function will be available. (CVS 734)
drh
More... almost 24 years ago
If the database is locked when sqlite_open() is called, sqlite_exec() should still honor the busy callback and should return an error message together with the SQLITE_BUSY result code. (CVS 733)
drh
More... almost 24 years ago
Slightly faster INSERTs from a SELECT by avoiding an intermediate table. But it didn't make nearly as much difference as I had hoped. (CVS 732)
drh
More... almost 24 years ago
Change the tokenizer to ignore C-style comments /*...*/ in accordance with SQL99. (CVS 731)
drh
More... almost 24 years ago
Fix for ticket #142: Make sure we get the correct sort order even when the columns being sorted contain NULLs. (CVS 730)
drh
More... about 24 years ago
Version 2.7.0 (CVS 729)
drh
More... about 24 years ago
Documentation updates prior to the releae of 2.7.0. (CVS 728)
drh
More... about 24 years ago
Fix for ticket #136: Added the OP_RenameCursor VDBE instruction and used it to make cursor numbers right on nested subqueries. Also added OP_Gosub and OP_Return but have not actually used them for anything yet. (CVS 727)
drh
More... about 24 years ago
Fix the memory leak introduced by check-in (725). (CVS 726)
drh
More... about 24 years ago
Change the way token memory is allocated in an effort to fix ticket #136. There is now a memory leak when using views of views. (CVS 725)
drh
More... about 24 years ago
Fix for ticket #138: Makefile doesn't use exec_prefix, has some install problems (CVS 724) More... about 24 years ago
Fix for ticket #137: Use getpwuid() instead of getpwent(). (CVS 723)
drh
More... about 24 years ago
This COLLATE keyword was not being parsed correctly inside CREATE TABLE statements - it was being included as part of the datatype. This fixes the problem. (CVS 722)
drh
More... about 24 years ago
Fix for ticket #110: return an error if trying to start a transaction within a transaction or when attempting to commit or rollback outside of a transaction. (CVS 721)
drh
More... about 24 years ago
Documentation updates. (CVS 720)
drh
More... about 24 years ago
Fix for ticket #135: Remove unused variables from three files. (CVS 719)
drh
More... about 24 years ago
More documentation updates. (CVS 718)
drh
More... about 24 years ago