aboutsummaryrefslogtreecommitdiff
path: root/src/callback.c
Commit message (Expand)AuthorAge
* Change a char* to const char* in order to suppress some harmlessdrh2016-02-24
* Improvements to the application-defined function mechanism so that it isdrh2016-02-15
* Improvements to the way that OOM errors are processed.drh2016-02-05
* Combine the xFunc and xStep pointers of the FuncDef object into a singledrh2016-01-14
* Fix typos in comments. No code changes.peter.d.reid2014-09-06
* Simplify the interface to the symbol table, saving 600 bytes of code space.drh2014-08-21
* Rename the internal Schema.flags field to Schema.schemaFlags.drh2014-08-05
* Allow the SQLITE_DETERMINISTIC flag to be ORed into the preferred text encodingdrh2013-12-14
* Combine the FuncDef.iPrefEnc and FuncDef.flags fields into a singledrh2013-09-06
* Consolidate all occurrences of the "no such collation sequence" error messagedrh2012-10-05
* Fix the application-defined function logic so that functions with a variabledrh2012-04-07
* Rename sqlite3SchemaFree() to sqlite3SchemaClear() to more accurately reflectdrh2011-04-04
* Add a generation counter to the Schema object and enhance OP_VerifySchemadrh2011-03-18
* Updates to the requirements on the sqlite3_create_function() family ofdrh2010-09-16
* Make sure all memory from sqlite3DbMalloc() is freed by sqlite3DbFree() anddrh2010-07-24
* Remove additional traces (mostly in comments) of the Table.dbMem field.drh2010-07-23
* Remove the Table.dbMem variable, as it is no longer being used for its origin...dan2010-07-23
* When commands such as ALTER TABLE and VACUUM use SQL internally, make suredrh2010-04-24
* Remove the obsolete "$Id:$" RCS identifier strings from the source code.drh2009-11-10
* Check in implementation of foreign key constraints.dan2009-09-19
* Warning cleanup from the MSVC compile.shane2009-09-07
* All the sqlite3GetCollSeq() function to specify an arbitrary text encoding.drh2009-08-20
* Changes to prepare.c and callback.c to promote better test coverage. (CVS 6770)drh2009-06-17
* Updates to the extension loading logic to support full coverage testing. (CVS...drh2009-05-20
* Rework the logic that generates a schema for tables created using drh2009-05-11
* Changes to facility full coverage testing of util.c. (CVS 6597)drh2009-05-03
* Remove the aFKey hash table, which was not being used. Simplify thedrh2009-05-02
* Changes to insure that lookaside memory allocations are never used to hold drh2009-03-24
* Corrected typos and misspellings. Ticket #3702. (CVS 6336)shane2009-03-05
* Better error message when coalesce() has too few arguments. Ticket #3623. (C...drh2009-01-31
* Additional work at eliminating silly compiler warnings. (CVS 6010)drh2008-12-10
* Never use strlen(). Use our own internal sqlite3Strlen30() which isdrh2008-12-10
* Simplify the symbol hash table to use only a single key class. Otherdrh2008-10-10
* Calling sqlite3_create_function with nArg==(-1) does not override priordrh2008-09-09
* Begin adding support for the SQLITE_OMIT_WSD macro. Some (many) WSD variables...danielk19772008-09-01
* Move date+time functions to start-time initialization. Additionaldrh2008-08-21
* Initialize the global built-in function table at start-timedrh2008-08-21
* Add the pcache module from the experimental branch. Also change things so tha...danielk19772008-08-20
* Implement the "lookaside" memory allocation cache. Use of this cache makesdrh2008-07-28
* Improved enforcement of the SQLITE_LIMIT_LENGTH limit. (CVS 5368)drh2008-07-08
* Fix a bug causing the pager-cache size to be reset to its default value whene...danielk19772008-06-23
* Modifications to the malloc failure tests to test transient and persistent fa...danielk19772007-08-29
* The malloc.test script now passes all tests with no errors. (CVS 4271)drh2007-08-22
* The sqlite3_value object now carries an sqlite3* pointer to use fordrh2007-08-21
* More work on refactoring of malloc() interfaces. There are still many errors....danielk19772007-08-16
* Half-way through a major refactoring of the memory allocation.drh2007-08-16
* Add the experimental create_collation_x() api. (CVS 3934)danielk19772007-05-07
* Ensure sqlite3_finalize() can be called from within the xDisconnect() method ...danielk19772007-04-16
* Minor tweaks to collating sequences. We'll hold of making major changesdrh2007-02-02
* When opening a new connection on a shared cache, be careful not todrh2006-05-24