I Use This!
Activity Not Available

Commits : Listings

Analyzed about 1 year ago. based on code collected about 1 year ago.
Jan 16, 2023 — Jan 16, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Add -DSQLITE_OMIT_LOOKASIDE=1 to the "Sanitize" configuration in testrunner_data.tcl. More... over 1 year ago
Enhance the ./configure script and its associated Makefile.in so that the --with-linenoise=DIR argument cause the linenoise command-line editing library located in directory DIR to be linked with the sqlite3 CLI. More... over 1 year ago
Fix a buffer overread in the sessions extension that could occur when processing a corrupt changeset. More... over 1 year ago
Fix a harmless compiler warning in the sqldiff.c utility. More... over 1 year ago
Add the "tool-zip" makefile target with the intention of using it to build the "sqlite-tool-*.zip" deliverables. deliverables. More... over 1 year ago
Fix a problem with the new xIntegrity method for virtual tables, and also fix a bad assert() in FTS3 that was found by the new xIntegrity method. More... over 1 year ago
Add documentation to sqlite3_get/set_clientdata() to make it clear that these are security-sensitive interfaces that should not be exposed to potential attackers. More... over 1 year ago
Add the xIntegrity method to the sqlite3_module object, thus enabling PRAGMA integrity_check to operate on virtual tables. Make use of this new method in the FTS3/4, FTS5, and RTREE virtual tables. More... over 1 year ago
Fix unreachable branches. More... over 1 year ago
Change the xIntegrity virtual table method signature so that it returns an integer error code and writes the error message into a parameter. More... over 1 year ago
Add the xIntegrity method to the sqlite3_module object. Implement this method in RTREE, FTS3/4, and FTS5 so that "PRAGMA integrity_check" also verifies the correctness of shadow tables associated with those virtual tables. More... over 1 year ago
Move Java-side FTS5 bits into the fts5 subpackage to (A) make it easy to optionally bundle it (or not) and (B) set a precedent for puting extension APIs in their own package. More... over 1 year ago
Java FTS5 API renaming, for consistency. More... over 1 year ago
Fix a few SQLITE_MISUSE returns so that they call sqlite3MisuseError(). More... over 1 year ago
Add tests for, and source code comments to, fts5. No changes to code. More... over 1 year ago
Do not make assumptions about the byteorder of PowerPC processors. More... over 1 year ago
In JNI routines which set an OutputPointer.value, always do so, even on error, for consistency. More... over 1 year ago
Remove several unnececessary functions. More... over 1 year ago
Move an internal utility class out of the public Java API. More... over 1 year ago
Expose sqlite3_bind_parameter_name() to JNI. Extend the definition of null for the @NotNull annotation, to consider closed/finalized Java-side handles wrapping C-side resources as null for its purposes. More... over 1 year ago
Add the missing sqlite3_blob_read() to [9a9945c405cf]. Elaborate on the definition of the @NotNull annotation. More... over 1 year ago
Expose the sqlite3_blob_...() APIs to JNI. More... over 1 year ago
Expose sqlite3_system_errno() to JNI. More... over 1 year ago
Expose sqlite3_stmt_status() to JNI. More... over 1 year ago
Expose sqlite3_randomness() to JNI. More... over 1 year ago
Expose sqlite3_get/set_auxdata() to JNI. More... over 1 year ago
Expose sqlite3_get_autocommit() to JNI. More... over 1 year ago
Remove some unnecessary code. More... over 1 year ago
Add a couple more sqlite3_backup tests. More... over 1 year ago
Export the sqlite3_backup_...() APIs to JNI. More... over 1 year ago