ClickHouse/libs/libmysqlxx/src/UseQueryResult.cpp
2011-03-22 18:29:51 +00:00

22 lines
390 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, mysql_fetch_lengths(res));
}
}