我想从 C++ 程序插入int
和string
值到 mysql 表中。
for (std::map < int, std::vector < std::string > >::iterator hit = three_highest.begin(); hit != three_highest.end(); ++hit) {
//std::cout << hit->first << ":";
for (std::vector < std::string >::iterator vit = (*hit).second.begin(); vit != (*hit).second.end(); vit++) {
std::cout << hit->first << ":";
std::cout << *vit << "\n";
我想插入hit->first
和*vit
。
我在这里看到了示例:mysql 的 OTL 示例。它对我有用吗?
以及如何在我的系统中设置 OTL 环境?我需要安装它还是什么?
这是另一种非常简单的示例。但它直接
include <mysql.h>
在我的系统中找不到。它使用什么环境?
我正在使用 Linux - Ubuntu 环境。