当前位置:   article > 正文

C++使用SQLite产生中文乱码的解决方法_sqlite转中文乱码

sqlite转中文乱码

SQLite使用的编码是UTF-8,我们系统的编码是GBK,在使用中文时会出现乱码。
在实现INSERT一类的操作时可以直接在字符串前加上u8,将默认编码转为UTF-8编码。
u8前缀可以明确地指示字符串常量是UTF-8编码的。

#include <iostream>
#include <sqlite3.h>
#include <string>
using namespace std;

int main()
{
    sqlite3 *db;
    char *errorMessage = 0;
    int rc;
    rc = sqlite3_open("test.db", &db);
    if (rc)
    {
        cout << "无法打开数据库: " << sqlite3_errmsg(db) << endl;
        return 0;
    }
    else
    {
        cout << "成功打开数据库" << endl;
    }
    // 执行插入
    const char *sql = u8"INSERT INTO book (no,bookname,author) VALUES(3, '西游记', '吴承恩');";
    rc = sqlite3_exec(db, sql, 0, 0, &errorMessage);
    if (rc != SQLITE_OK)
    {
        cout << "SQL错误: " << errorMessage << endl;
        sqlite3_free(errorMessage);
    }
    else
    {
        cout << "记录插入成功" << endl;
    }
    sqlite3_close(db);
    system("pause");
    return 0;
}
  • 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
  • 34
  • 35
  • 36

在这里插入图片描述
在读取时应该把UTF-8编码转为系统接受的GBK编码。

#include <iostream>
#include <sqlite3.h>
#include <stringapiset.h>
#include <memory>
using namespace std;

// UTF-8到GBK的转换函数
std::string Utf8ToGbk(const std::string &utf8)
{
    int len = MultiByteToWideChar(CP_UTF8, 0, utf8.c_str(), -1, NULL, 0);
    std::unique_ptr<wchar_t[]> wstr(new wchar_t[len + 1]);
    memset(wstr.get(), 0, (len + 1) * sizeof(wchar_t));
    MultiByteToWideChar(CP_UTF8, 0, utf8.c_str(), -1, wstr.get(), len);
    len = WideCharToMultiByte(CP_ACP, 0, wstr.get(), -1, NULL, 0, NULL, NULL);
    std::unique_ptr<char[]> str(new char[len + 1]);
    memset(str.get(), 0, (len + 1) * sizeof(char));
    WideCharToMultiByte(CP_ACP, 0, wstr.get(), -1, str.get(), len, NULL, NULL);
    return std::string(str.get());
}

static int callback(void *data, int argc, char **argv, char **azColName)
{
    for (int i = 0; i < argc; i++)
    {
        string s = string(azColName[i]) + ": " + (argv[i] ? argv[i] : "NULL");
        // 将结果转换后再输出
        cout << Utf8ToGbk(s.c_str()) << endl;
    }
    cout << endl;
    return 0;
}

int main()
{
    sqlite3 *db;
    char *errorMessage = 0;
    int rc;
    rc = sqlite3_open("test.db", &db);
    if (rc)
    {
        cout << "无法打开数据库: " << sqlite3_errmsg(db) << endl;
        return 0;
    }
    else
    {
        cout << "成功打开数据库" << endl;
    }
    // 查询
    string sql = "SELECT * FROM book;";
    const char *ssql = sql.c_str();
    rc = sqlite3_exec(db, ssql, callback, 0, &errorMessage);

    if (rc != SQLITE_OK)
    {
        cout << "SQL错误: " << errorMessage << endl;
        sqlite3_free(errorMessage);
    }
    else
    {
        cout << "查询成功执行" << endl;
    }
    sqlite3_close(db);

    system("pause");
    return 0;
}
  • 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
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66

在这里插入图片描述
成功解决。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/480891
推荐阅读
相关标签
  

闽ICP备14008679号