当前位置: 首页 > wzjs >正文

山东兽药网站建设wordpress 微博 链接地址

山东兽药网站建设,wordpress 微博 链接地址,律所网站建设,做网站80端口SQLite 中文写入失败问题总结与解决方案 在 Windows 下使用 C 操作 SQLite 数据库时,中文字段经常出现 写入成功但内容显示为 BLOB 或 乱码 的问题。根本原因在于 SQLite 要求字符串以 UTF-8 编码 存储,而默认的 std::string 中文通常是 GB2312/ANSI 编…

SQLite 中文写入失败问题总结与解决方案

在 Windows 下使用 C++ 操作 SQLite 数据库时,中文字段经常出现 写入成功但内容显示为 BLOB乱码 的问题。根本原因在于 SQLite 要求字符串以 UTF-8 编码 存储,而默认的 std::string 中文通常是 GB2312/ANSI 编码。

🧩 问题现象

在 C++ (如 Visual Studio) 中使用 std::string 把含有中文的字符串插入到 SQLite 数据库时:

  • 插入后数据表中文本列显示为 BLOB
  • 或者表面显示为 乱码,无法正常显示中文

示例

std::string desc = "搬运动作:从 Port2 取片 → Port3 放片";
m_pDB->executeQuery("INSERT INTO ... VALUES ('" + desc + "');");

结果: description 列在 SQLite 中显示为 BLOB,而不是文本

在这里插入图片描述


🔍 根本原因

SQLite 要求所有 TEXT 类型的字符串必须为 UTF-8 编码。

而 VS 编译器中直接写入 std::string 的中文,实际编码是 GB2312 / GBK / ANSI,并非 UTF-8

导致结果:

  • SQLite 无法识别非 UTF-8 内容,转而存储成 BLOB

✅ 解决方案

✅ 方法一:使用 ansiToUtf8() 将 ANSI 转换为 UTF-8

// 本地编码转为 UTF-8
std::string TransferManager::ansiToUtf8(const std::string& ansiStr) {int wideLen = MultiByteToWideChar(CP_ACP, 0, ansiStr.c_str(), -1, nullptr, 0);std::wstring wideStr(wideLen, 0);MultiByteToWideChar(CP_ACP, 0, ansiStr.c_str(), -1, &wideStr[0], wideLen);int utf8Len = WideCharToMultiByte(CP_UTF8, 0, wideStr.c_str(), -1, nullptr, 0, nullptr, nullptr);std::string utf8Str(utf8Len, 0);WideCharToMultiByte(CP_UTF8, 0, wideStr.c_str(), -1, &utf8Str[0], utf8Len, nullptr, nullptr);utf8Str.pop_back(); // 去掉最后的 '\0'return utf8Str;
}

使用:

std::string raw = "搬运动作:从 Port2 取片 → Port3 放片"; // 系统本地编码
std::string utf8 = TransferManager::ansiToUtf8(raw);
data.strDescription = utf8;

在这里插入图片描述


✅ 方法二:如果使用了 Unicode 工程(如 std::wstring / CStringW

可使用:

std::string TransferManager::wstringToUtf8(const std::wstring& wstr);

或者使用 CStringWstd::wstringUTF-8

CStringW wdesc = L"搬运动作:从 Port2 取片 → Port3 放片";
data.strDescription = TransferManager::wstringToUtf8(std::wstring(wdesc));

📦 可选补充:从 SQLite 中读取 UTF-8 → 转为本地编码显示

// UTF-8 转为本地编码
std::string TransferManager::utf8ToAnsi(const std::string& utf8Str) {int wideLen = MultiByteToWideChar(CP_UTF8, 0, utf8Str.c_str(), -1, NULL, 0);std::wstring wideStr(wideLen, 0);MultiByteToWideChar(CP_UTF8, 0, utf8Str.c_str(), -1, &wideStr[0], wideLen);int ansiLen = WideCharToMultiByte(CP_ACP, 0, wideStr.c_str(), -1, NULL, 0, NULL, NULL);std::string ansiStr(ansiLen, 0);WideCharToMultiByte(CP_ACP, 0, wideStr.c_str(), -1, &ansiStr[0], ansiLen, NULL, NULL);ansiStr.pop_back(); // 去掉最后的 '\0'return ansiStr;
}

可用于日志输出或 UI 控件显示。


🧪 实际检测建议

插入前输出:

printf("准备插入 UTF-8 字符串:%s\n", data.strDescription.c_str());

验证方式:

  • SQLite 中字段类型应为 TEXT,不是 BLOB
  • DB Browser 应正常显示中文,不是问号或乱码

🧠 最佳实践

场景建议方式
插入中文到 SQLiteansiToUtf8
从 SQLite 读取后展示utf8ToAnsi
项目编码设置设置为 UTF-8 无 BOM
VS 源文件保存编码另存为 UTF-8 编码

✅ 总结

只要 std::string 中的中文不是 UTF-8 编码,SQLite 插入后就会出现异常(显示为 BLOB 或乱码)。

http://www.dtcms.com/wzjs/554240.html

相关文章:

  • 怎么做网站布局wordpress用户手册
  • 网站建设考核标准武鸣网站建设
  • 网站设计培训网站建设合同2018
  • 给几个那方面网站网址php招生网站开发
  • 用html做网站山东春季高考网站建设
  • 不需要备案如何做网站在新西兰做兼职的网站
  • 购物类网站都有哪些模块网站备案后改域名
  • 电子产品网站建设策划书国展做网站的公司
  • 福田附近公司做网站建设多少钱做的网站没流量
  • php网站登录系统怎么做建设游戏运营网站开展工作
  • 三明网站建设公司定陶网站建设
  • 门户网站做免费相亲的建设商务网站的费用
  • 烟台网站建设哪家服务好买产品做企业网站还是博客
  • 网站空间维护工程建设教育网站
  • 网站商城的公司运营结构wordpress 怎么使用
  • 室内设计网站大全网站php企业网站开发方案
  • 全能优化型网站烟台seo快速排名
  • php制作网站开发微擎小程序
  • 测量为什么要建站无锡网站app微信号
  • 网站建设前端做网站seo推广公司
  • 佛山便宜网站建设网站收录一键提交
  • 网站整体设计意图及其功能网站建设好吗
  • 公司旅游视频网站模板免费下载建设银行信用卡被钓鱼网站骗了15000
  • 什么是wap网站wordpress镶嵌网页
  • 北京微信公众号成都seo排名
  • 编程外包seo排名点击手机
  • 写作网站推荐建设人行官方网站下载
  • 网站运营每天做的昆明专门做网站
  • wordpress搭建小说站楼盘 东莞网站建设
  • 基于django网站开发课设报告怎么定义自豪地采用WordPress