]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2003-05-17  drhFix memory allocation problem in the sqlite_get_table...
2003-05-16  drhMake sure the ON CONFLICT clause on a BEGIN overrides...
2003-05-13  jplyonRemoved 3rd (file) column from PRAGMA database_list...
2003-05-13  drhFix another twos-complement negation error. Ticket...
2003-05-13  drhA change to lemon related to ticket #313. (CVS 972)
2003-05-13  drhRemove unnecessary "#include <sqliteInt.h>" from the...
2003-05-13  drhFix a #ifdefs that are used to comment-out the VACUUM...
2003-05-12  drhMake sure hash functions always return non-negative...
2003-05-11  jplyonChanged PRAGMA database_list to show the filename....
2003-05-11  jplyonChanged ".databases" command to use PRAGMA database_lis...
2003-05-10  drhChanges to comments. In particular, a lengthy comment...
2003-05-10  jplyonRemoved never-used symbol SQLITE_ResultDetails. (CVS...
2003-05-10  jplyonRemoved never-used pragma "result_set_details". (CVS...
2003-05-10  jplyonDocumented the "GO" and "\" command terminators. (CVS...
2003-05-10  jplyonFixed metacharacter coloring with LP, RP, PLUS.
2003-05-07  drhFormat keyword lists in lang.html using a TCL proc...
2003-05-07  jplyon- Added entries for PRAGMAs database_list, temp_store...
2003-05-07  jplyonCleaned up keywords section. (CVS 959)
2003-05-06  drhRestrain the flattener in the presence of outer joins...
2003-05-04  drhAdded tests trying (unsuccessfully) to reproduce ticket...
2003-05-04  drhShell command-line parsing enhancements suggested by...
2003-05-04  drhFix deficiencies in sqlite_complete() pointed out by...
2003-05-04  jplyonAdded shell command ".databases" to list name and file...
2003-05-04  jplyonadded shell command ".databases" to list name and file...
2003-05-04  jplyonnew section for keywords, more docs for attached databa...
2003-05-03  drhMore documentation updates. (CVS 951)
2003-05-03  jplyon- added entry for ATTACH DATABASE.
2003-05-02  drhAdditional tests of the new flattener added. Ticket...
2003-05-02  drhEnhance the query flattener to handle subqueries that...
2003-05-02  drhVDBE cursors numbers for tables in a join do not have...
2003-05-01  drhCorrectly create an index that uses an INTEGER PRIMARY...
2003-04-30  drhIn the shell tool, delay opening the database until...
2003-04-29  drhAccept a "/" or "go" on a line by itself as an SQL...
2003-04-29  drhAllow the ASC or DESC keyword to appear after a column...
2003-04-29  drhThe sqlite_complete() function should ignore carriage...
2003-04-26  drhIn the test code, make several attempts to convert...
2003-04-26  drhFix the shell tool to do a better job of ignoring white...
2003-04-26  drhOnly print the "Loading resources from..." line when...
2003-04-26  drhDo not use the return value of fcntl() to find the...
2003-04-26  drhFix the sqlite_complete() routine so that it recognizes...
2003-04-25  drhReport the correct authorization context in the authori...
2003-04-25  drhAdd tests to insure VACUUM works in the presence of...
2003-04-25  drhWork around a name collision problem on windows. (CVS...
2003-04-25  drhMake VACUUM work even if multiple processes have the...
2003-04-25  drhExplicit casts to squelch bogus warnings for vc++....
2003-04-25  drhGet VACUUM working again - with test cases. Some other...
2003-04-24  drhFix some issues with INSTEAD OF triggers. (CVS 930)
2003-04-23  drhRemove the begin_hook and commit_hook APIs. They were...
2003-04-22  drhUpdate the authorizer API so that it reports the databa...
2003-04-22  paulCheck for readline libs now adds appropriate curses...
2003-04-21  drhAdd support for TEMPORARY triggers. Such triggers...
2003-04-20  drhAdd more tests for the in-memory database. (CVS 925)
2003-04-20  drhAdded tests for the in-memory database backend. Also...
2003-04-20  paulAlign config vars controlling in-memory DB with code...
2003-04-20  paulReset pCur->eSkip on a MoveTo (CVS 922)
2003-04-20  drhUpdate comments. Remove unused field from the Index...
2003-04-19  drhModify the optimizer so that it does not assume that...
2003-04-19  drhBug in WHERE clause processing fixed. Ticket #298...
2003-04-18  drhfix a memory leak in btree_rb.c. (CVS 918)
2003-04-18  drhFix for ticket #297 - bug in sqliteSortCompare(). ...
2003-04-18  drhThe VACUUM command is now functioning (again). Need...
2003-04-17  drhFix triggers to work in an ATTACHed database. Ticket...
2003-04-17  drhMake sure the min() and max() optimizations work on...
2003-04-17  drhChange the shell to use the sqliteIsNumber() routine...
2003-04-16  drhRollback if a commit hook fails. (CVS 912)
2003-04-16  drhFix the authorizer so that it correctly interprets...
2003-04-16  drhSimplify the number processing code. Fix for ticket...
2003-04-16  drhRemove some unnecessary code and complication from...
2003-04-15  drhGet triggers working on tables with INTEGER PRIMARY...
2003-04-15  paulAdded btree_rb.c (CVS 907)
2003-04-15  drhDo not record the inserted rowid on when doing an INSER...
2003-04-15  drhChange lemon to use <stdarg.h> instead of <varargs...
2003-04-15  drhChange some variable names and comments in the new...
2003-04-13  paulSupport in-memory databases for temp tables (CVS 903)
2003-04-06  drhSplit the implementation of COPY, PRAGMA, and ATTACH...
2003-04-06  drhMove the implementation of VACUUM into a separate sourc...
2003-04-06  drhSimplify the BTree interface by shortening names. ...
2003-04-05  drhMore testing of ATTACH and DETACH. (CVS 899)
2003-04-05  drhBegin testing the new ATTACH and DETACH commands. ...
2003-04-03  drhFix for ticket #276. (CVS 897)
2003-04-03  drhAdded experimental APIs: sqlite_begin_hook() and sqlite...
2003-04-03  drhUse a intermediate table when inserting a TEMP table...
2003-04-01  paulAdd infrastructure to suport multiple btree implementat...
2003-03-31  drhMinor follow-on changes to the recent ATTACH patch...
2003-03-31  drhMinor follow-on changes to the recent ATTACH patch...
2003-03-31  drhAdd the sqliteErrorMsg() function and use it to generat...
2003-03-31  drhThe ATTACH and DETACH statements are now coded but...
2003-03-30  drhRemove the experimental sqlite_open_aux_file() API...
2003-03-30  drhRemove the experimental sqlite_open_aux_file() API...
2003-03-30  drhRemove the obsolete documentation on how to crosscompil...
2003-03-30  drhDetect when a child node of a btree page has zero entri...
2003-03-30  drhFix a memory leak in triggers and update tests to show...
2003-03-27  drhRegression tests now work - except for some changes...
2003-03-27  drhFix a segfault in the trigger code. (CVS 884)
2003-03-27  drhChanges to the "sqlite" structure that allow simultaneo...
2003-03-27  drhChanges to the "sqlite" structure that allow simultaneo...
2003-03-24  a.rottmannRe-generated. (CVS 882)
2003-03-24  a.rottmannUpdated libtool. (CVS 881)
2003-03-24  a.rottmannAdded pkg-config support. (CVS 880)
2003-03-20  drhRecord the database name in addition to the table name...
next