aboutsummaryrefslogtreecommitdiff
path: root/sqlite3
AgeCommit message (Collapse)AuthorFilesLines
2022-02-28sqlite3: Update the included sqlite3 to 3.38.0Steve Bennett5-35080/+79047
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2021-01-10package: add ABI version checkingSteve Bennett4-19/+17
jim.h now includes JIM_ABI_VERSION that should be incremented whenever the ABI changes. Then all loadable modules should call Jim_CheckAbiVersion() to make sure they are loaded against the correct version. Add Jim_PackageProvideCheck() that does both Jim_CheckAbiVersion() and Jim_PackageProvide() to simplify the implementation of loadable extensions. Also rename the "big" sqlite3 extension to just sqlite to avoid a naming conflict with the smaller jim-sqlite3 extension. Signed-off-by: Steve Bennett <steveb@workware.net.au>
2020-06-05update all extensions for new Jim_DeleteCommand() APISteve Bennett1-1/+1
Now argument is Jim_Obj *, not const char * Signed-off-by: Steve Bennett <steveb@workware.net.au>
2017-08-18sqlite3: Fix build scriptSteve Bennett1-1/+1
sqlite3/build-ext now needs to use autosetup-find-tclsh Signed-off-by: Steve Bennett <steveb@workware.net.au>
2016-09-28sqlite3: Ensure all allocation goes through Jim_Alloc, Jim_Realloc & Jim_FreeEvan Hunter1-2/+2
2016-08-17sqlite3: Fix some compiler warningsSteve Bennett1-0/+4
Because of SQLITE_OMIT_INCRBLOB Signed-off-by: Steve Bennett <steveb@workware.net.au>
2016-08-17sqlite3: Update the included sqlite3 to 3.14.1Steve Bennett5-32126/+107827
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-12-16Fix some compiler warningsSteve Bennett1-2/+2
2011-12-12sqlite3: Add -Wall and fix a compiler warningSteve Bennett2-1/+2
Signed-off-by: Steve Bennett <steveb@workware.net.au>
2011-11-24Port the "full" sqlite3 extension to Jim TclSteve Bennett7-0/+141638
Signed-off-by: Steve Bennett <steveb@workware.net.au>