0

我正在使用 mysqlx 从 MySQL 服务器获取数据。

mysqlx::Session sess("127.0.0.1", 33060, "user", pwd());
auto db = sess.getSchema("adb");
auto table = db.getTable(table_name());
table.select("id,blobcolumn");
std::list<mysqlx::Row> rows = res.fetchAll();
for (auto& row : rows) {
    auto dvalue=row[i].get<double>();
}

如何读取 blob 数据?喜欢row[i].get<stream>()

4

0 回答 0