From 18657a960e125336f704ea058e25c27bd3900dcb Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 5 May 2024 19:28:19 +0200 Subject: Adding upstream version 3.40.1. Signed-off-by: Daniel Baumann --- www/c3ref/c_any.html | 138 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 138 insertions(+) create mode 100644 www/c3ref/c_any.html (limited to 'www/c3ref/c_any.html') diff --git a/www/c3ref/c_any.html b/www/c3ref/c_any.html new file mode 100644 index 0000000..f22c397 --- /dev/null +++ b/www/c3ref/c_any.html @@ -0,0 +1,138 @@ + + + + + +Text Encodings + + + +
+ + + +
+
+Small. Fast. Reliable.
Choose any three. +
+ + +
+
+ + + +
+
+
+ + +
+

SQLite C Interface

+

Text Encodings

+
+
+#define SQLITE_UTF8           1    /* IMP: R-37514-35566 */
+#define SQLITE_UTF16LE        2    /* IMP: R-03371-37637 */
+#define SQLITE_UTF16BE        3    /* IMP: R-51971-34154 */
+#define SQLITE_UTF16          4    /* Use native byte order */
+#define SQLITE_ANY            5    /* Deprecated */
+#define SQLITE_UTF16_ALIGNED  8    /* sqlite3_create_collation only */
+
+

+These constant define integer codes that represent the various +text encodings supported by SQLite. +

See also lists of + Objects, + Constants, and + Functions.

+ -- cgit v1.2.3