]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2003-09-02  drhAdd a logo from Rasmus Schultz. (CVS 1092)
2003-08-27  drhCVS missed a commit (because I pressed Ctrl-C in the...
2003-08-27  drhAdd locks to the in-memory backend so that recursive...
2003-08-27  drhAdd locks to the in-memory database so that recursive...
2003-08-26  drhFix compiler warnings under OpenVMS. Ticket #357....
2003-08-26  drhTry to work around a bug in VC++ by only passing unsign...
2003-08-26  drhFix a bug in sqliteRealloc() that only occurs if there...
2003-08-26  drhIf the database filename is an empty string, open a...
2003-08-26  drhClose files before deleting them on test scripts under...
2003-08-26  drhRemove extra backslashes from end of lines in the insta...
2003-08-24  drhFix a bug in the new "pk" column of the table_info...
2003-08-23  drhAdd a "pk" column to the table_info pragma which is...
2003-08-22  drhVersion 2.8.6 (CVS 1080)
2003-08-22  drhChange the CVSTrac website to www.sqlite.org. Update...
2003-08-21  drhUpdate the -version-info number on libtool in Makefile...
2003-08-20  drhAdd the experimental "quote()" function to the set...
2003-08-19  drhAdd the "onecolumn" method to the TCL language bindings...
2003-08-16  drhMake the compile work under cygwin.
2003-08-16  drhDo not delete tables with the same name when dropping...
2003-08-15  drhFix a segfault that occurs in the VACUUM command if...
2003-08-13  drhUpdate the NULL-handling chart with new information...
2003-08-10  drhMake the sqliteOsCurrentTime() function work for Window...
2003-08-10  drhtighter coding of the date and time functions. Better...
2003-08-09  drhAdd experimental date and time functions based on julia...
2003-08-05  drhProvide a more informative error message when a uniquen...
2003-07-30  drhThe {quote: SrcList} object was not being expanded...
2003-07-27  drhWhen creating a new journal file, open a (read-only...
2003-07-27  drhMake sure the schema loader callback can handle EMPTY_R...
2003-07-27  drhIn the VDBE, when an integer value will not fit into...
2003-07-22  drhVersion 2.8.5 (CVS 1063)
2003-07-22  drhFix a typo in the index.html homepage. (CVS 1062)
2003-07-22  drhIncrement the version number and update the documentati...
2003-07-22  danielk1977Add experimental sqlite_reset() API (allows pre-compile...
2003-07-22  drhMake sure temporary file names in windows have a full...
2003-07-20  drhFix the LIMIT clause so that it applies to the entire...
2003-07-19  drhMake sure the min() and max() optimizer works correctly...
2003-07-18  drhIn the sqlite shell, change the name of function getlin...
2003-07-18  drhIn the test scripts, do not try to delete files that...
2003-07-16  drhFix typo on the homepage. (CVS 1054)
2003-07-16  drhMake LIMIT 0 return no rows. LIMIT -1 still returns...
2003-07-16  drhAllow negative values for LIMIT and OFFSET. Add tests...
2003-07-16  drhInitialize a variable to prevent an MSVC compiler warni...
2003-07-09  drhAn an extra test associated with ticket #387. (CVS...
2003-07-09  drhAllow the output arguments in sqlite_compile and sqlite...
2003-07-08  drhEnhance the C/C++ documentation to clarify the meaning...
2003-07-07  drhA proported fix for ticket #374. (CVS 1047)
2003-07-07  drhUpdate the NULL-handling document to show current behav...
2003-07-06  drhCorrectly handle comparing an INTEGER PRIMARY KEY again...
2003-07-01  drhMake sure indices in ATTACH-ed databases are put into...
2003-07-01  drhUpdate the null-handling document to show how SQL Anywh...
2003-06-30  drhDocumentation change: refer users to the wiki for addit...
2003-06-29  drhVersion 2.8.4 (CVS 1041)
2003-06-29  drhThe prior fix of ticket #360 was incorrect and caused...
2003-06-29  drhFix a bad memory leak in the in-memory database module...
2003-06-29  drhBump the version number in preparation for the next...
2003-06-29  drhDocumentation updates. (CVS 1037)
2003-06-28  drhMinor change to a comment in encode.c. (CVS 1036)
2003-06-28  drhFix a bug in the soundex() code. Ticket #367. Add...
2003-06-24  drhIn a SELECT, the rowid of a view or subquery which...
2003-06-23  drhRemove a surplus "return" statement accidentaly left...
2003-06-23  drhRemove all references to SQLITE_OMIT_TRACE. Tracing...
2003-06-22  drhMake sure the source of a PULL opcode is not an ephemer...
2003-06-17  drhRemove unused variable. Ticket #355. (CVS 1030)
2003-06-16  drhFix compiler errors and warnings win SQLITE_OMIT_AUTHOR...
2003-06-16  drhAdd the %z format to the sqlite_mprintf() and related...
2003-06-16  drhDo not flatten a subquery which is the right term of...
2003-06-16  drhPreserve blank lines in the middle of SQL statements...
2003-06-15  drhUpdate the documentation to reflect the new capabilitie...
2003-06-15  drhEnhance the "PRAGMA integrity_check" command to verify...
2003-06-15  jplyonUpdated sqlite_encode_binary() comments with tighter...
2003-06-15  jplyonDocumented integer values used by PRAGMAs.
2003-06-14  a.rottmann* Added -version-info to shared libraries
2003-06-14  drhBug fix: sqliteFree() called twice on the same allocati...
2003-06-14  drhOpen the journal file for read-only when doing a playba...
2003-06-12  jplyonAdded missing error string to sqlite_error_string(...
2003-06-10  drhSuppress the warning message about print_node() being...
2003-06-09  drhRemove redundant "return" statement from btree_rb.c...
2003-06-08  jplyonDocumented SQL fns IFNULL() and NULLIF(). (CVS 1015)
2003-06-07  drhUse sqliteOsFileExists() in the debugging hook in vdbe...
2003-06-07  drhDo not assume that a pointer can fit in a long inside...
2003-06-07  jplyonMajor update of vdbe tutorial to 2.8.0 engine. (CVS...
2003-06-07  jplyonHyperlinks and minor additions/corrections for lang...
2003-06-06  drhExtend the authorization mechanism to disallow the...
2003-06-06  drhAdd btree_rb.c and opcodes.c to the source built by...
2003-06-06  drhAdd a prototype for the sqlite_vmprintf() function...
2003-06-05  drhFix a typo in speed.html. (CVS 1007)
2003-06-05  drhRemove unused code from util.c. (CVS 1006)
2003-06-04  drhFix a bug in UPDATE OR REPLACE that was introduced...
2003-06-04  drhAdjust test cases to cope with the extra column returne...
2003-06-04  drhChange the "database_list" pragma to return a third...
2003-06-04  drhVersion 2.8.3 (CVS 1002)
2003-06-04  drhUpdate the version number to 2.8.3. (CVS 1001)
2003-06-04  drhDisable the unreadable file test (attach-6.2) under...
2003-06-04  drhAvoid corrupting indices when doing a REPLACE on a...
2003-06-03  drhAdditional testing of the ATTACH command with bug fixes...
2003-06-02  drhThe OP_Checkpoint opcode is now a no-op if invoked...
2003-06-02  drhFix a bug in the COPY command introduced by check-in...
2003-06-02  drhFix an initialized variable in sqliteInitOne. (CVS...
2003-06-02  jplyonGenerate anchors in opcode table html for use by new...
2003-06-02  jplyonAdded comments. (CVS 993)
next