ClickHouse/libs/libmysqlxx/src/UseQueryResult.cpp
2011-03-18 20:26:54 +00:00

22 lines
364 B
C++

#include <mysqlxx/Connection.h>
#include <mysqlxx/UseQueryResult.h>
namespace mysqlxx
{
UseQueryResult::UseQueryResult(MYSQL_RES * res_, Connection * conn_, const Query * query_) : ResultBase(res_, conn_, query_)
{
}
Row UseQueryResult::fetch()
{
MYSQL_ROW row = mysql_fetch_row(res);
if (!row)
checkError(conn->getDriver());
return Row(row, this);
}
}