ClickHouse/libs/libmysqlxx/src/UseQueryResult.cpp

22 lines
338 B
C++
Raw Normal View History

2011-03-03 19:57:34 +00:00
#include <mysqlxx/Connection.h>
#include <mysqlxx/UseQueryResult.h>
namespace mysqlxx
{
2011-03-09 20:11:29 +00:00
UseQueryResult::UseQueryResult(MYSQL_RES * res_, Connection * conn_) : ResultBase(res_, conn_)
2011-03-03 19:57:34 +00:00
{
}
Row UseQueryResult::fetch_row()
{
2011-03-09 20:11:29 +00:00
MYSQL_ROW row = mysql_fetch_row(res);
2011-03-03 19:57:34 +00:00
if (!row)
2011-03-09 20:11:29 +00:00
checkError(conn->getDriver());
2011-03-03 19:57:34 +00:00
return Row(row, this);
}
}