blob: 0b13bf874d2125d19ac8211a41f5096de1cfa259 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
.Dd January 24, 2024
.Dt SQLITE_UTF8 3
.Os
.Sh NAME
.Nm SQLITE_UTF8 ,
.Nm SQLITE_UTF16LE ,
.Nm SQLITE_UTF16BE ,
.Nm SQLITE_UTF16 ,
.Nm SQLITE_ANY ,
.Nm SQLITE_UTF16_ALIGNED
.Nd text encodings
.Sh SYNOPSIS
.In sqlite3.h
.Fd #define SQLITE_UTF8
.Fd #define SQLITE_UTF16LE
.Fd #define SQLITE_UTF16BE
.Fd #define SQLITE_UTF16
.Fd #define SQLITE_ANY
.Fd #define SQLITE_UTF16_ALIGNED
.Sh DESCRIPTION
These constant define integer codes that represent the various text
encodings supported by SQLite.
.Sh IMPLEMENTATION NOTES
These declarations were extracted from the
interface documentation at line 5500.
.Bd -literal
#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 */
.Ed
|