.. |
attach.c
|
Remove code dealing with old file formats. (CVS 1354)
|
2004-05-11 07:11:51 +00:00 |
auth.c
|
Change the names of external symbols from sqlite_XXX to sqlite3_XXX. (CVS 1337)
|
2004-05-10 10:34:34 +00:00 |
btree.c
|
Additional minor speed improvements. (CVS 1496)
|
2004-05-30 02:14:17 +00:00 |
btree.h
|
Fix many problems with manifest types and column affinity. Most things are
|
2004-05-18 10:06:24 +00:00 |
build.c
|
Transform OP_HexBlob and OP_String8 to OP_Blob and OP_String the first time they are executed. (CVS 1492)
|
2004-05-29 11:24:50 +00:00 |
date.c
|
Refactoring of the vdbe Mem functions and the APIs that deal with them.
|
2004-05-26 23:25:30 +00:00 |
delete.c
|
Factor common code for generating index keys into a procedure. Other
|
2004-05-28 16:00:21 +00:00 |
encode.c
|
Change lots of internal symbols from sqliteXXX to sqlite3XXX so that the
|
2004-05-08 08:23:19 +00:00 |
expr.c
|
Do not include the P3 parameter on OP_Integer opcodes if the integer will fit
|
2004-05-30 01:38:43 +00:00 |
func.c
|
A few more bugfixes. Test cases pass now. (CVS 1472)
|
2004-05-27 10:30:52 +00:00 |
hash.c
|
Change lots of internal symbols from sqliteXXX to sqlite3XXX so that the
|
2004-05-08 08:23:19 +00:00 |
hash.h
|
Change lots of internal symbols from sqliteXXX to sqlite3XXX so that the
|
2004-05-08 08:23:19 +00:00 |
insert.c
|
Transform OP_HexBlob and OP_String8 to OP_Blob and OP_String the first time they are executed. (CVS 1492)
|
2004-05-29 11:24:50 +00:00 |
legacy.c
|
Refactoring of the vdbe Mem functions and the APIs that deal with them.
|
2004-05-26 23:25:30 +00:00 |
main.c
|
Fix vacuum so that it works with blobs. (CVS 1490)
|
2004-05-29 10:23:19 +00:00 |
md5.c
|
Refactoring of the vdbe Mem functions and the APIs that deal with them.
|
2004-05-26 23:25:30 +00:00 |
os_common.h
|
Split up os.c into separate files, one for each platform. (CVS 1441)
|
2004-05-22 17:41:58 +00:00 |
os_mac.c
|
Split up os.c into separate files, one for each platform. (CVS 1441)
|
2004-05-22 17:41:58 +00:00 |
os_mac.h
|
Split up os.c into separate files, one for each platform. (CVS 1441)
|
2004-05-22 17:41:58 +00:00 |
os_unix.c
|
Remove the OP_SetInsert opcode. (CVS 1443)
|
2004-05-22 21:30:40 +00:00 |
os_unix.h
|
Split up os.c into separate files, one for each platform. (CVS 1441)
|
2004-05-22 17:41:58 +00:00 |
os_win.c
|
Split up os.c into separate files, one for each platform. (CVS 1441)
|
2004-05-22 17:41:58 +00:00 |
os_win.h
|
Split up os.c into separate files, one for each platform. (CVS 1441)
|
2004-05-22 17:41:58 +00:00 |
os.h
|
Split up os.c into separate files, one for each platform. (CVS 1441)
|
2004-05-22 17:41:58 +00:00 |
pager.c
|
Changes to btree and pager in preparation for moving to run-time page
|
2004-05-14 01:58:11 +00:00 |
pager.h
|
Changes to btree and pager in preparation for moving to run-time page
|
2004-05-14 01:58:11 +00:00 |
parse.y
|
Fix vacuum so that it works with blobs. (CVS 1490)
|
2004-05-29 10:23:19 +00:00 |
pragma.c
|
Transform OP_HexBlob and OP_String8 to OP_Blob and OP_String the first time they are executed. (CVS 1492)
|
2004-05-29 11:24:50 +00:00 |
printf.c
|
Change the table record format to support manifest typing. (CVS 1361)
|
2004-05-12 07:33:33 +00:00 |
random.c
|
Change lots of internal symbols from sqliteXXX to sqlite3XXX so that the
|
2004-05-08 08:23:19 +00:00 |
select.c
|
Transform OP_HexBlob and OP_String8 to OP_Blob and OP_String the first time they are executed. (CVS 1492)
|
2004-05-29 11:24:50 +00:00 |
shell.c
|
Have the vdbe handle strings in the same encoding as the database. (CVS 1445)
|
2004-05-24 07:04:25 +00:00 |
sqlite.h.in
|
Add API functions sqlite3_open_varargs(), sqlite3_open16_varargs() and
|
2004-05-27 23:56:16 +00:00 |
sqliteInt.h
|
Allow CREATE and DROP TRIGGER on attached databases. (CVS 1488)
|
2004-05-29 02:37:19 +00:00 |
table.c
|
Change the names of external symbols from sqlite_XXX to sqlite3_XXX. (CVS 1338)
|
2004-05-10 10:34:51 +00:00 |
tclsqlite.c
|
Allow CREATE and DROP TRIGGER on attached databases. (CVS 1488)
|
2004-05-29 02:37:19 +00:00 |
test1.c
|
Enhance the C function used to test sqlite3_create_function() from Tcl. (CVS 1476)
|
2004-05-27 14:23:36 +00:00 |
test2.c
|
Change the names of external symbols from sqlite_XXX to sqlite3_XXX. (CVS 1338)
|
2004-05-10 10:34:51 +00:00 |
test3.c
|
New varint encoding gives a maximum varint length of 9 instead of 10. (CVS 1395)
|
2004-05-18 15:57:42 +00:00 |
test4.c
|
Refactoring of the vdbe Mem functions and the APIs that deal with them.
|
2004-05-26 23:25:30 +00:00 |
test5.c
|
Steps towards UTF-16 databases. Some tests are failing because of this
|
2004-05-22 03:05:33 +00:00 |
tokenize.c
|
Add API functions sqlite3_open_varargs(), sqlite3_open16_varargs() and
|
2004-05-27 23:56:16 +00:00 |
trigger.c
|
Transform OP_HexBlob and OP_String8 to OP_Blob and OP_String the first time they are executed. (CVS 1492)
|
2004-05-29 11:24:50 +00:00 |
update.c
|
Transform OP_HexBlob and OP_String8 to OP_Blob and OP_String the first time they are executed. (CVS 1492)
|
2004-05-29 11:24:50 +00:00 |
utf.c
|
Avoid arithmetic on void pointers. (CVS 1489)
|
2004-05-29 02:44:02 +00:00 |
util.c
|
Factor common code for generating index keys into a procedure. Other
|
2004-05-28 16:00:21 +00:00 |
vacuum.c
|
Ensure vacuum handles table names with spaces in them. (CVS 1491)
|
2004-05-29 10:43:06 +00:00 |
vdbe.c
|
Additional minor speed improvements. (CVS 1496)
|
2004-05-30 02:14:17 +00:00 |
vdbe.h
|
Remove dataType and includeTypes flags from function definitions. Added new
|
2004-05-26 16:54:42 +00:00 |
vdbeapi.c
|
Fix a bug in the sqlite3_column_decltype() API. (CVS 1486)
|
2004-05-28 13:13:02 +00:00 |
vdbeaux.c
|
Additional minor speed improvements. (CVS 1496)
|
2004-05-30 02:14:17 +00:00 |
vdbeInt.h
|
Tables and indices use the same record format. (CVS 1482)
|
2004-05-28 08:21:05 +00:00 |
vdbemem.c
|
Do not include the P3 parameter on OP_Integer opcodes if the integer will fit
|
2004-05-30 01:38:43 +00:00 |
where.c
|
Transform OP_HexBlob and OP_String8 to OP_Blob and OP_String the first time they are executed. (CVS 1492)
|
2004-05-29 11:24:50 +00:00 |