SQLite3中文
1. C语言宽字符
从C95开始,C语言提供 <wchar.h>和<wctype.h> 用于处理宽字符(wide characters)。宽字符类型为 wchar_t
。char
类型有的操作函数,wchar_t
都有对应的函数。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <locale.h>
#include <wchar.h>int main(int argc, char *argv[]) {unsigned index = 0;char *name = "琉璃";unsigned length = strlen(name);printf("%s%lu%s\n","The size of data-type named 'char' is ",sizeof(char)," bytes");printf("[%u]:%s(%lu bytes)\n",length,name,sizeof(name));for (index = 0; index < length; index++) {printf("[%u]%d\n", index, name[index]);}setlocale(LC_CTYPE, "UTF-8"); /* 设置本地化编码 */wchar_t *w_name = L"琉璃"; /* 宽字符串 */length = wcslen(w_name); /* 获取宽字符串长度 */printf("%s%lu%s\n","The size of data-type named 'wchar_t' is ",sizeof(wchar_t)," bytes");wprintf(L"[%u]:%ls(%lu bytes)\n",length,w_name,sizeof(w_name));for (index = 0; index < length; index++) {wprintf(L"[%u]%lc(U+%X)\n", index, w_name[index], w_name[index]);}return EXIT_SUCCESS;
}
/* The end of source file that is named 'main.c'. */
The size of data-type named 'char' is 1 bytes
[6]:琉璃(8 bytes)
[0]-25
[1]-112
[2]-119
[3]-25
[4]-110
[5]-125
The size of data-type named 'wchar_t' is 4 bytes
[2]:琉璃(8 bytes)
[0]琉(U+7409)
[1]璃(U+7483)
由上可以看出如果使用 char
类型也能正常显示,可是长度和数据内容不能正常显示。而 wchar_t
可以解决这问题。
2. SQLite3宽字符
在SQLite3中,字符串类型被称为 TEXT
类型,可以存储任意字符集的字符串数据,包括中文字符。SQLite3 默认使用UTF-8编码来存储和处理 TEXT
类型数据,因此,可以存储和处理包括中文字符在内的多种字符集数据。
另外<