こんにちは私はMySQLクエリからの行と列の結果を処理するためのラッパーを作成しようとしています。ステートメントからの戻りデータは、文字列またはNULLポインターにすることができます。だからここに私の試みがあります:
class RowWrapper {
public:
std::vector< std::vector <std::string> > data;
void SetVector(unsigned int rows, unsigned int columns);
};
void RowWrapper::SetVector(unsigned int rows, unsigned int columns)
{
for (int x = 0; x > rows; x++)
{
std::vector<std::string> p_rows;
for (int y = 0; y > columns; y++)
{
p_rows.push_back(x*y); //Error here
}
data.push_back(temp_rows);
}
}
私が持っているエラーは、オーバーロードされた関数のインスタンスがないことです。おそらくベクトルや文字列について何かが欠けています。