本文主要是介绍VS2022 使用C++访问 mariadb 数据库,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
首先,下载 MariaDB Connector/C++ 库
MariaDB Products & Tools Downloads | MariaDB
第二步,安装后
第三步,写代码
#include <iostream>
#include <cstring>
#include <memory>
#include <windows.h>#include <mariadb/conncpp.hpp>std::string utf8_to_gbk(const std::string& utf8_str) {if (utf8_str.empty()) return "";// 1. 计算需要的宽字符数组的大小int wideCharCount = MultiByteToWideChar(CP_UTF8, 0, utf8_str.c_str(), -1, NULL, 0);if (wideCharCount == 0) {retur
这篇关于VS2022 使用C++访问 mariadb 数据库的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!