aboutsummaryrefslogtreecommitdiff
path: root/src/prepare.c
Commit message (Expand)AuthorAge
* When an automatic re-prepare occurs, take care not to reset the internaldrh2007-01-09
* Fix a critical bug in sqlite3_prepare_v2 that can lead to segfaults whendrh2007-01-08
* First cut at adding the sqlite3_prepare_v2() API. Test cases added, butdrh2006-11-09
* Be sure to ignore PRAGMA encoding pragmas if the encoding has already beendrh2006-09-23
* Add support for extended result codes - additional result informationdrh2006-09-15
* Fix a bug in out-of-memory processing introduced by check-in (3336). (CVS 3346)drh2006-08-12
* More work toward getting sqlite3_interrupt() to work from separatedrh2006-07-26
* Fix a file descriptor leak following malloc failure on DROP TABLE IF EXISTS. ...drh2006-06-26
* Incremental work on parsing/storing and invoking the xCreate callback for vir...danielk19772006-06-12
* Fix type coercion rules for the IN operator. Ticket #1821. (CVS 3188)drh2006-05-23
* Get parserless builds working again. (CVS 3133)drh2006-03-13
* Code changes resulting from Coverity analysis.drh2006-03-06
* Add the column_origin_name() etc. APIs. (CVS 3069)danielk19772006-02-10
* Make sure the 3rd parameter to sqlite3_prepare() is honored. Ticket #1650. (...drh2006-01-30
* Minor comment changes and code optimizations. (CVS 3029)drh2006-01-25
* Remove vestiges of the older TSD code for handling OOM exceptions.drh2006-01-23
* Include the ThreadData structure in internal malloc() testing. Also fixes for...danielk19772006-01-18
* Use a global variable protected by a mutex instead of thread-specific-data to...danielk19772006-01-18
* Change sqlite3MallocClearFailed() calls to sqlite3ApiExit(), a better API. (C...danielk19772006-01-18
* Various fixes that allow the malloc() failure tests to pass again. (CVS 2963)danielk19772006-01-17
* Clarify error handling in pager code. No functional changes. (CVS 2956)danielk19772006-01-16
* Minor modification to restoreOrClearCursorPosition() to improve efficiency. D...danielk19772006-01-13
* About a 2.5% speed improvement by reducing the number of sqlite3ThreadDatadrh2006-01-12
* Automatically deallocate thread-specific data when it is no longerdrh2006-01-11
* Fix bugs caused by assuming that shared-schemas are initialized. (CVS 2917)danielk19772006-01-11
* Store collation sequence names instead of pointers in sharable schema data st...danielk19772006-01-10
* Fix some errors to do with attached databases and text encodings in shared-ca...danielk19772006-01-09
* Rename DbSchema to "Schema" and SqliteTsd to "ThreadData". (CVS 2893)danielk19772006-01-09
* Changes so that SQLITE_OMIT_PARSER and SQLITE_OMIT_DISKIO work. (CVS 2878)drh2006-01-06
* Add some simple tests and fixes for shared-schema locking. (CVS 2869)danielk19772006-01-06
* Add the shared schema/pager modifications. Very few tests so far. (CVS 2859)danielk19772006-01-05
* Add support for CREATE INDEX IF NOT EXISTS and DROP INDEX IF EXISTS. (CVS 2855)drh2006-01-04
* Add serial-types 8 and 9 for integer constants of 0 and 1 that use zerodrh2005-12-29
* Initial infrastructure for recognizing DESC indices and being able to read drh2005-12-16
* Fix memory allocation problems on the utf-16 versions of collating functiondrh2005-12-15
* Fix minor malloc() related problems and add sqlite3_soft_heap_limit() stubs. ...danielk19772005-12-12
* Clean up annoying (and pointless) compiler warnings about differing signednes...drh2005-12-09
* Many small changes to ensure memory is not leaked after malloc() fails. (CVS ...danielk19772005-12-09
* Some elements of the new malloc() failure handling. Not all cases work proper...danielk19772005-12-06
* Add the experimental EXPLAIN QUERY PLAN diagnostic capability. (CVS 2685)drh2005-09-10
* Bring testing coverage of the analyze.c file up to 100%. Bugs found anddrh2005-08-19
* The results of ANALYZE are now loaded into internal data structures wheredrh2005-07-23
* Split main.c into two files to make building without the parser easier. (CVS ...danielk19772005-05-25