我目前正在使用以下方式从准备好的语句中访问结果集的内容
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()