我已经阅读了教程,我通常会了解其工作原理: http://tangentsoft.net/mysql++/doc/html/userman/tutorial.html#simple
我正在尝试构建这个mysql ++代码,我收到一个错误:
std::ostringstream query3;
query3<<"select pipe_id from pipe where version_id='"<<id<<"'";
std::storeQueryResult ares=query3.store();
for(size_t i=0;i<ares.num_rows();i++)
cout<<ares[i]["version_id"]<<ares[i]["pipe_id"]<<std::endl;
mysql_query(&mysql,query3.str().c_str());
错误是store
不是ostringstream
的成员。我不确定如何纠正这个问题。
嗨,Merlyn,
感谢代码并查看我的问题。
我尝试了上面的代码,但我又得到了错误
错误:请求'连接'中的成员'query'是非类型'MYSQL *'
在这行代码上
// Construct a query object with the query string mysqlpp::Query query =
connection.query(query_string);
请在我出错的地方帮忙?
答案 0 :(得分:6)
问题是你必须使用mysql ++查询对象来执行查询,而不是ostringstream。 ostringstream只允许您构建查询字符串,但不允许您执行查询。
有一个教程显示基本用法: http://tangentsoft.net/mysql++/doc/html/userman/tutorial.html#simple
要从代码中获取有效的查询,您需要获取动态查询,将其转换为字符串,并使用它来构造mysql ++查询对象。
// todo: create the connection here
// Construct the query string. You were already doing this in your code
std::ostringstream query_builder;
query_builder << "select pipe_id from pipe where version_id='" << id << "'";
// Convert the ostringstream to a string
std::string query_string = query_builder.str();
// Construct a query object with the query string
mysqlpp::Query query = connection.query(query_string);
// Perform the query
mysqlpp::StoreQueryResult result = query.store();
for(size_t i = 0; i < result.num_rows(); i++)
std::cout << result[i]["version_id"] << result[i]["pipe_id"] << std::endl;