ClickHouse/libs/libmysqlxx/src/StoreQueryResult.cpp

17 lines
368 B
C++
Raw Normal View History

2011-03-03 19:57:34 +00:00
#include <mysqlxx/Connection.h>
#include <mysqlxx/StoreQueryResult.h>
namespace mysqlxx
{
2011-03-18 20:26:54 +00:00
StoreQueryResult::StoreQueryResult(MYSQL_RES * res_, Connection * conn_, const Query * query_) : ResultBase(res_, conn_, query_)
2011-03-03 19:57:34 +00:00
{
2011-03-18 20:26:54 +00:00
reserve(mysql_num_rows(res));
2011-03-09 20:11:29 +00:00
while (MYSQL_ROW row = mysql_fetch_row(res))
2011-03-03 19:57:34 +00:00
push_back(Row(row, this));
2011-03-09 20:11:29 +00:00
checkError(conn->getDriver());
2011-03-03 19:57:34 +00:00
}
}