ClickHouse/libs/libmysqlxx/src/UseQueryResult.cpp

23 lines
409 B
C++
Raw Normal View History

#include <mysql.h>
2011-03-03 19:57:34 +00:00
#include <mysqlxx/Connection.h>
#include <mysqlxx/UseQueryResult.h>
namespace mysqlxx
{
2011-03-18 20:26:54 +00:00
UseQueryResult::UseQueryResult(MYSQL_RES * res_, Connection * conn_, const Query * query_) : ResultBase(res_, conn_, query_)
2011-03-03 19:57:34 +00:00
{
}
2011-03-15 20:56:42 +00:00
Row UseQueryResult::fetch()
2011-03-03 19:57:34 +00:00
{
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, mysql_fetch_lengths(res));
2011-03-03 19:57:34 +00:00
}
}