aboutsummaryrefslogtreecommitdiff
path: root/src/vdbeblob.c
Commit message (Expand)AuthorAge
* Fix potential 32-bit integer overflow problems on the offset and lengthdrh2015-02-07
* Add test file e_blobwrite.test, containing tests for the sqlite3_blob_write()...dan2014-11-10
* Add the SQLITE_ENABLE_API_ARMOR compile-time option. This is a work indrh2014-10-24
* Split the sqlite3Error() routine into sqlite3Error() anddrh2014-08-22
* Enable the b-tree cursor objects overflow page-number cache, which is normall...dan2014-03-11
* Attempt to work around MSVC's treatment of __LINE__ as a non-constant valuedrh2014-03-10
* Add logic to do test coverage measurements on the VDBE code.drh2014-02-17
* Delete the OP_VerifySchema opcode. Enhance OP_Transaction to do the schemadrh2014-02-06
* Show changes to the column cache when PRAGMA vdbe_addoptrace=ON is set.drh2013-12-18
* Reduce the size of the VdbeCursor object from 144 to 120 bytes.drh2013-11-20
* Rework the logic that factors constant expressions out of inner loops, makingdrh2013-11-15
* Many new test cases added, that mostly work. Currently 18 errors in drh2013-11-02
* The Index object now has nKeyCol and nColumn. nColumn is the total numberdrh2013-10-22
* Increase the default SQLITE_MAX_SCHEMA_RETRY to 50. Make sure that macrodrh2013-04-06
* Add the new OP_Once opcode. Use it to clean up and simplify variousdrh2011-09-16
* Refactor the SQL parameter processing so that parameter names for valuesdrh2011-06-01
* Add a generation counter to the Schema object and enhance OP_VerifySchemadrh2011-03-18
* Have sqlite3_blob_bytes() return 0 following a failed call to sqlite3_reopen_...dan2010-12-06
* Structural coverage tests for vdbeblob.c. Including experimental new API sqli...dan2010-10-26
* Add missing header comments for changes related to the experimental sqlite3_b...dan2010-10-26
* Merge trunk changes into experimental branch.dan2010-10-21
|\
| * Fix some segfaults that could occur in obscure circumstances where error mess...dan2010-10-21
* | Updates to FTS4 to improve performance and make more accurate cost estimates ...dan2010-10-20
|/
* Fix an assert() failure that could occur if compiling with OMIT_SHARED_CACHE.dan2010-06-19
* Continuing improvements to error reporting and the sqlite3_log() routine.drh2010-02-23
* Remove the obsolete sqlite3SafetyOn() mechanism. Add additional loggingdrh2010-02-23
* Remove the obsolete "$Id:$" RCS identifier strings from the source code.drh2009-11-10
* Add a test to check that the incrblob API cannot be used to write to an IPK c...dan2009-10-02
* Check in implementation of foreign key constraints.dan2009-09-19
* Combine the OP_Statement and OP_Transaction opcodes.dan2009-09-08
* Changes to support recursive triggers.dan2009-08-28
* Cause opening a transaction on a sharable b-tree module automatically obtain ...danielk19772009-07-02
* Cause incremental-blob read/write operations lock shared-cache tables in the ...danielk19772009-06-29
* Avoid allocating large objects on the stack in the incremental BLOB I/Odrh2009-06-01
* Change sqlite_blob_open() so that it zeros the output pBlob pointer whendrh2009-05-09
* Changes to insure that lookaside memory allocations are never used to hold drh2009-03-24
* Fix a couple of fairly obscure cases where an assert() could fail following a...danielk19772009-03-19
* Removed compiler warnings from MSVC builds. Ticket #3701. (CVS 6335)shane2009-03-05
* Instead of using SetNumColumns, specify the number of columns in a table or i...danielk19772009-02-20
* Add a count parameter to the OP_Variable opcode and use it to simplifydrh2009-02-20
* Fix for sqlite3_blob_write(): If either 3rd or 4th argument is less than zero...danielk19772008-10-02
* Implement the "lookaside" memory allocation cache. Use of this cache makesdrh2008-07-28
* Remove unused code. Test coverage enhancements. Modify the algorithm useddrh2008-07-10
* Fix a problem with the incremental blob API. sqlite3_blob_open() was always r...danielk19772008-06-16
* Ensure that it is not possible to open either virtual table or view columns u...danielk19772008-04-24
* Use a vdbe memory cell to allocate the space required for vdbe cursors. (CVS ...danielk19772008-03-25
* Error messages says "no such view" instead of "no such table" whendrh2008-01-25
* Make sqlite3SafetyOn() and sqlite3SafetyOff() macros which disappear whendrh2008-01-23
* More work toward converting the VM into a register-based machine. (CVS 4704)drh2008-01-10
* Change OP_OpenRead and OP_OpenWrite so that the database number is read from ...danielk19772008-01-03