-C Add\sAPI\sdocs\sfor\ssqlite3_column_text_v2()\sand\ssqlite3_column_blob_v2().
-D 2025-07-01T18:36:11.756
+C Parameter\snumber\sdoc\scorrections\sfor\sthe\sprevious\scheck-in.
+D 2025-07-01T18:38:02.421
F .fossil-settings/binary-glob 61195414528fb3ea9693577e1980230d78a1f8b0a54c78cf1b9b24d0a409ed6a x
F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
F src/rowset.c 8432130e6c344b3401a8874c3cb49fefe6873fec593294de077afea2dce5ec97
F src/select.c 882d739e0d5e6c7a8b46a3cca3ada37fe1a56301f1360d6b141312c666bbe482
F src/shell.c.in 4f14a1f5196b6006abc8e73cc8fd6c1a62cf940396f8ba909d6711f35f074bb6
-F src/sqlite.h.in 54824d50c69df8f81502fcebc23d407ee09cb7f7ebd951be72b670e6f31298c4
+F src/sqlite.h.in e2687f6ea0c9b1bfb2ec1d3f976c18b82ecc536f4db175ec2debb2b84514f074
F src/sqlite3.rc 015537e6ac1eec6c7050e17b616c2ffe6f70fca241835a84a4f0d5937383c479
F src/sqlite3ext.h 0bfd049bb2088cc44c2ad54f2079d1c6e43091a4e1ce8868779b75f6c1484f1e
F src/sqliteInt.h 21c089759415895c86220d35c22cd17fdc6ca27653e1ec0c744d1e6808d0545a
F tool/warnings-clang.sh bbf6a1e685e534c92ec2bfba5b1745f34fb6f0bc2a362850723a9ee87c1b31a7
F tool/warnings.sh 1ad0169b022b280bcaaf94a7fa231591be96b514230ab5c98fbf15cd7df842dd
F tool/win/sqlite.vsix deb315d026cc8400325c5863eef847784a219a2f
-P 5a2734bbf8b471fa27f8f4b687e4d24f64c7663b823908f1ee8cd21bb93beb98
-R dae4fce04bcce555b325cd0b17ed5060
+P 60614fed447270b8342f6ee04f4ed9d5c81393c5344a917820a0a7e571de19a9
+R 5c5a95c9983dd3d0270a9337c5c9ff3c
U stephan
-Z 79b34d6cd08aaec438188d7aafa77f7b
+Z 713328a34cf705fec53b4538fbdfe5de
# Remove this line to create a well-formed Fossil manifest.
-60614fed447270b8342f6ee04f4ed9d5c81393c5344a917820a0a7e571de19a9
+97b06c4594dc3d056334dfba6f310fb6d058456adde6abacfef29f0244637d39
**
** ^The sqlite3_column_text_v2() and sqlite3_column_blob_v2()
** interfaces deliver most of their output via their 3rd, 4th, and 5th
-** output-pointer arguments. The first is an output pointer to the
+** output-pointer arguments. The 3rd is an output pointer to the
** resulting memory (the same pointer which would be returned by their
-** non-v2 counterparts). The second is an integer pointer into which,
-** if it is not NULL, the length of the memory, in bytes, is
-** written. The 5th argument is an integer pointer which, if not NULL,
-** gets set to the [SQLITE_INTEGER | column's SQL type]. On success
-** these interfaces return 0. On error they do not modify any of their
+** non-v2 counterparts). The 4th is an integer pointer into which, if
+** it is not NULL, the length of the memory, in bytes, is written. The
+** 5th argument is an integer pointer which, if not NULL, gets set to
+** the [SQLITE_INTEGER | column's SQL type]. On success these
+** interfaces return 0. On error they do not modify any of their
** output pointers and return SQLITE_NOMEM on allocation error,
** SQLITE_MISUSE if either their first or third arguments are NULL,
** and SQLITE_RANGE if the given column index is out of range.