]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Mention that sqlite3_column_text16() returns have native endianness
authorlarrybr <larrybr@noemail.net>
Thu, 10 Mar 2022 02:23:43 +0000 (02:23 +0000)
committerlarrybr <larrybr@noemail.net>
Thu, 10 Mar 2022 02:23:43 +0000 (02:23 +0000)
FossilOrigin-Name: 25b7f88fcb2bb1908abde109c1167c462efbb156b4a8a8f94d36202bd93ea433

manifest
manifest.uuid
src/sqlite.h.in

index 92bc7c81de3985c28d935e8fe4b5fb0580e43596..535fa436f2d25eb6cef05d4539b5fc6c7aaf8ebd 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Check-in\s[642a0b4752743216]\sfixing\ssqlite_dbpage\sis\snot\sexactly\scorrect.\nThis\spatch\sshould\sfix\sit.
-D 2022-03-10T01:10:28.743
+C Mention\sthat\ssqlite3_column_text16()\sreturns\shave\snative\sendianness
+D 2022-03-10T02:23:43.705
 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -554,7 +554,7 @@ F src/resolve.c ea935b87d6fb36c78b70cdc7b28561dc8f33f2ef37048389549c7b5ef9b0ba5e
 F src/rowset.c ba9515a922af32abe1f7d39406b9d35730ed65efab9443dc5702693b60854c92
 F src/select.c 4890a3cfee0bc60ff231c3a44db37968859ab0be156983dbcc0c096109832cdd
 F src/shell.c.in 69d1e59da4881f096ab47fbd3e6d99794f3e4a43f41fd9e4d2e845c9b8d20fd5
-F src/sqlite.h.in e82ac380b307659d0892f502b742f825504e78729f4edaadce946003b9c00816
+F src/sqlite.h.in a9517f548afe7507bf6c50bfe4eae96eafb4fcce71d980f0b915b8a71916dae5
 F src/sqlite3.rc 5121c9e10c3964d5755191c80dd1180c122fc3a8
 F src/sqlite3ext.h a95cb9ed106e3d39e2118e4dcc15a14faec3fa50d0093425083d340d9dfd96e6
 F src/sqliteInt.h a98a9cfc7e717b98f30e72545695f1ad92354fdf16df8510e80f48cf98c4adbe
@@ -1944,8 +1944,8 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
 F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
-P 6f838305e2c848a43b210bd1b7b962fb9e3c41de34de778675e6578fcd99f397
-R 1c08757aded2a038b243d63f31083a42
-U drh
-Z 02f19376b233605a19102be65ce52f53
+P 6ba36714ca5e5457bc424273129f2814b62b7fae38926aa6eeeeec81020d7f70
+R 2a08b42c1d235daa1c1ecabbd9423a51
+U larrybr
+Z c7702290f0be1e7531fdca6dcb5d7c26
 # Remove this line to create a well-formed Fossil manifest.
index c3bc62682b5c51d6bfe00668cbd9ef1fee331b34..1c9e53916c1f062f2c148dd753b6038dd1e453a5 100644 (file)
@@ -1 +1 @@
-6ba36714ca5e5457bc424273129f2814b62b7fae38926aa6eeeeec81020d7f70
\ No newline at end of file
+25b7f88fcb2bb1908abde109c1167c462efbb156b4a8a8f94d36202bd93ea433
\ No newline at end of file
index 97ffcd88cc0ad84a78b75bd4bcb4947aef15073d..c82c0971eff081412144667bd87978a7fa2f7605 100644 (file)
@@ -4979,6 +4979,10 @@ int sqlite3_data_count(sqlite3_stmt *pStmt);
 ** even empty strings, are always zero-terminated.  ^The return
 ** value from sqlite3_column_blob() for a zero-length BLOB is a NULL pointer.
 **
+** ^Strings returned by sqlite3_column_text16() always have the endianness
+** which is native to the platform, regardless of the text encoding set
+** for the database.
+**
 ** <b>Warning:</b> ^The object returned by [sqlite3_column_value()] is an
 ** [unprotected sqlite3_value] object.  In a multithreaded environment,
 ** an unprotected sqlite3_value object may only be used safely with
@@ -4992,7 +4996,7 @@ int sqlite3_data_count(sqlite3_stmt *pStmt);
 ** [application-defined SQL functions] or [virtual tables], not within
 ** top-level application code.
 **
-** The these routines may attempt to convert the datatype of the result.
+** These routines may attempt to convert the datatype of the result.
 ** ^For example, if the internal representation is FLOAT and a text result
 ** is requested, [sqlite3_snprintf()] is used internally to perform the
 ** conversion automatically.  ^(The following table details the conversions