]> git.ipfire.org Git - thirdparty/sqlite.git/shortlog
thirdparty/sqlite.git
2004-05-31  drhBegin adding documentation for version 3.0. (CVS 1509)
2004-05-31  drhGet the attach.test working on windows. (CVS 1508)
2004-05-31  drhMore website updates. (CVS 1507)
2004-05-31  drhWebsite redesign in preparation for adding version...
2004-05-31  danielk1977Some test cases for read locks (CVS 1505)
2004-05-31  danielk1977Use read-only transactions. (CVS 1504)
2004-05-31  danielk1977Bugfix for previous checkin. (CVS 1503)
2004-05-31  danielk1977Add read-transactions to the btree and vdbe. The compil...
2004-05-31  danielk1977Remove the <ON CONFLICT> clause from BEGIN (CVS 1501)
2004-05-31  danielk1977Replace OP_Begin, OP_Commit and OP_Rollback with OP_Aut...
2004-05-30  drhAdd 3-byte and 6-byte integer serial types. This makes...
2004-05-30  drhVarious speed enhancements. (CVS 1498)
2004-05-30  drhImproved comments and speed tweaks to btree.c. (CVS...
2004-05-30  drhAdditional minor speed improvements. (CVS 1496)
2004-05-30  drhFaster version of sqlite3VdbeSerialGet. (CVS 1495)
2004-05-30  drhDo not include the P3 parameter on OP_Integer opcodes...
2004-05-29  drhA file format change for btree.c makes it between 10...
2004-05-29  danielk1977Transform OP_HexBlob and OP_String8 to OP_Blob and...
2004-05-29  danielk1977Ensure vacuum handles table names with spaces in them...
2004-05-29  danielk1977Fix vacuum so that it works with blobs. (CVS 1490)
2004-05-29  danielk1977Avoid arithmetic on void pointers. (CVS 1489)
2004-05-29  danielk1977Allow CREATE and DROP TRIGGER on attached databases...
2004-05-28  drhFactor common code for generating index keys into a...
2004-05-28  danielk1977Fix a bug in the sqlite3_column_decltype() API. (CVS...
2004-05-28  danielk1977Allow CREATE and DROP VIEW on attached databases. ...
2004-05-28  danielk1977Allow DROP TABLE and DROP INDEX on attached databases...
2004-05-28  danielk1977Allow CREATE TABLE and CREATE INDEX on attached databas...
2004-05-28  drhTables and indices use the same record format. (CVS...
2004-05-28  drhTables and indices use the same record format. (CVS...
2004-05-28  drhRemove the encoding argument from sqlite3VdbeSerialGet...
2004-05-27  danielk1977Add API functions sqlite3_open_varargs(), sqlite3_open1...
2004-05-27  drhChange the record format to include an extra varint...
2004-05-27  drhRemove the COPY command. (CVS 1477)
2004-05-27  danielk1977Enhance the C function used to test sqlite3_create_func...
2004-05-27  danielk1977Test sqlite3_bind_blob(). (CVS 1475)
2004-05-27  danielk1977A couple of test cases and fixes for blob literals...
2004-05-27  danielk1977Alter the Tcl eval sub-command so that it supports...
2004-05-27  danielk1977A few more bugfixes. Test cases pass now. (CVS 1472)
2004-05-27  danielk1977Various bugfixes. 68 Test cases still fail. (CVS 1471)
2004-05-27  drhFixes to the MEM changes. The library now links. ...
2004-05-27  drhMore MEM changes in the vdbe.c. Still will not compile...
2004-05-27  danielk1977More test cases for the new query API. (CVS 1468)
2004-05-27  danielk1977Add TCL test bindings and some more test cases for...
2004-05-26  drhBreak Mem.flags into Mem.type and Mem.enc. (CVS 1466)
2004-05-26  drhRefactoring of the vdbe Mem functions and the APIs...
2004-05-26  drhRemove dataType and includeTypes flags from function...
2004-05-26  danielk1977Ensure the type of an sqlite3_value* is not modified...
2004-05-26  danielk1977Add some tests for the new API. Many more to come....
2004-05-26  danielk1977Remove the show_datatypes pragma. (CVS 1461)
2004-05-26  danielk1977Use the new form of the sqlite3_create_function() API...
2004-05-26  danielk1977Use the new API calls more consistently. (CVS 1459)
2004-05-26  danielk1977More changes to do with the new sqlite3_step() API...
2004-05-26  drhMinor code fixes in btree.c and pragma.c to help with...
2004-05-26  danielk1977Add file legacy.c with old APIs. (CVS 1456)
2004-05-25  danielk1977Move the sqlite3_exec() function to legacy.c. (CVS...
2004-05-25  danielk1977Change a couple of symbol names for the new user functi...
2004-05-25  danielk1977Use the new API for returning values and errors from...
2004-05-25  danielk1977Add manifest type aware versions of the min() and max...
2004-05-24  danielk1977Aggregate functions also use sqlite_value* instead...
2004-05-24  danielk1977Update the typeof() operator to respect manifest types...
2004-05-24  danielk1977Non-aggregate SQL functions use sqlite_value* instead...
2004-05-24  danielk1977Fix typo in vdbe.c from previous commit. (CVS 1448)
2004-05-24  danielk1977Add the sqlite3_value_*() access functions. (CVS 1447)
2004-05-24  danielk1977Fix for retrieving UTF-16 little-endian text from a...
2004-05-24  danielk1977Have the vdbe handle strings in the same encoding as...
2004-05-23  danielk1977Begin changing the vdbe so all stack values use the...
2004-05-22  drhRemove the OP_SetInsert opcode. (CVS 1443)
2004-05-22  drhMove btree_rb.c into the attic. (CVS 1442)
2004-05-22  drhSplit up os.c into separate files, one for each platfor...
2004-05-22  drhBug fix in vdbe.c - variable declarations must come...
2004-05-22  danielk1977Add a couple of tests for UTF-16 databases. (CVS 1439)
2004-05-22  danielk1977Add a couple of tests for UTF-16 databases. (CVS 1438)
2004-05-22  danielk1977Use the new form of the sqlite3_open() API everywhere...
2004-05-22  danielk1977Tests for the functions in utf.c. (CVS 1436)
2004-05-22  danielk1977Store the text encoding in the database (as meta value...
2004-05-22  danielk1977A few bugfixes related to UTF-16 databases. sqlite3_ope...
2004-05-22  danielk1977Steps towards UTF-16 databases. Some tests are failing...
2004-05-22  drhUpdate comments and remove dead code from btree.c ...
2004-05-21  drhFloating point values are serialized in big-endian...
2004-05-21  drhRemove the OP_SetFound opcode and its cousins. (CVS...
2004-05-21  danielk1977Eliminate some unused code (CVS 1429)
2004-05-21  danielk1977Pretty-print blobs in vdbe-traces. (CVS 1428)
2004-05-21  danielk1977Further work on the new API. All the functions to execu...
2004-05-21  drhEliminate the OP_SortMakeRec and OP_SortCallback opcode...
2004-05-21  drhMost sorting problems are fixed. Dead code has been...
2004-05-21  danielk1977Fix typo in bind.test that was causing a seg-fault...
2004-05-21  danielk1977Add new sqlite3_open() and sqlite3_open16() APIs. ...
2004-05-21  drhSorting bug fixes. Now only 17 tests fail. (CVS 1422)
2004-05-20  drhFix a bug that prevented sorting by index. Down to...
2004-05-20  drhAdd internal support for collating sequences. This...
2004-05-20  drhsqlite3MemCompare now takes a CollSeq* argument. (CVS...
2004-05-20  drhFix problems with types and the recognition of BLOB...
2004-05-20  drhDefault type affinity is now NUMERIC. The affinity...
2004-05-20  danielk1977Add some more elements of the new API. (CVS 1416)
2004-05-20  drhFix the misc3.test test file. (CVS 1415)
2004-05-20  drhBug fix associated with misc3.test. (CVS 1414)
2004-05-20  drhBug fix associated with OP_SetNumColumns in insert...
2004-05-20  drhVACUUM works again. (CVS 1412)
2004-05-20  danielk1977Add some comments for sqlite3_bind_*() APIs. (CVS 1411)
2004-05-20  danielk1977Add support for the new sqlite3_bind_*() APIs. (CVS...
next