0
我正在使用mysql中的結果集來檢索結果。如何將結果集設置爲字符串指針?
我想要得到的結果字符串數組一樣
MYSQL_RES *res=mysql_store_result(mysql);
MYSQL_ROW row;
while ((row = mysql_fetch_row(result)))
{
string *result=row; //there is only one row in resultset
}
string *result=row;
它給我的錯誤
error: cannot convert char** to std::string* in initialization
不是如何使用string?