prepareStatement(SQL); res = p-6ren">
gpt4 book ai didi

c++ - 获取结果集中的行数?

转载 作者:可可西里 更新时间:2023-11-01 07:13:36 24 4
gpt4 key购买 nike

我目前正在使用以下方式从准备好的语句访问结果集的内容

std::string SQL = "....";
prep_stmt = con->prepareStatement(SQL);
res = prep_stmt->executeQuery();
if(res->next()) //If object exists
{
res->getString("ColumnName"); //Access the content of a column
}

有没有办法让我在res->next()

之前提前访问结果集中的行

最佳答案

试试 rowsCount() 方法

cout << "Number of rows : " << res->rowsCount() << endl;

编辑:注意 rowsCount 返回一个 size_t

关于c++ - 获取结果集中的行数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16947052/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com