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_blob.html | 156 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 156 insertions(+) create mode 100644 www/c3ref/c_blob.html (limited to 'www/c3ref/c_blob.html') diff --git a/www/c3ref/c_blob.html b/www/c3ref/c_blob.html new file mode 100644 index 0000000..a3f3abb --- /dev/null +++ b/www/c3ref/c_blob.html @@ -0,0 +1,156 @@ + + + + + +Fundamental Datatypes + + + +
+ + + +
+
+Small. Fast. Reliable.
Choose any three. +
+ + +
+
+ + + +
+
+
+ + +
+

SQLite C Interface

+

Fundamental Datatypes

+
+
+#define SQLITE_INTEGER  1
+#define SQLITE_FLOAT    2
+#define SQLITE_BLOB     4
+#define SQLITE_NULL     5
+#ifdef SQLITE_TEXT
+# undef SQLITE_TEXT
+#else
+# define SQLITE_TEXT     3
+#endif
+#define SQLITE3_TEXT     3
+
+

+Every value in SQLite has one of five fundamental datatypes:

+ +

+ +

These constants are codes for each of those types.

+ +

Note that the SQLITE_TEXT constant was also used in SQLite version 2 +for a completely different meaning. Software that links against both +SQLite version 2 and SQLite version 3 should use SQLITE3_TEXT, not +SQLITE_TEXT. +

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

+ -- cgit v1.2.3