ClickHouse/base/mysqlxx/UseQueryResult.cpp

28 lines
492 B
C++
Raw Normal View History

#if __has_include(<mysql.h>)
#include <mysql.h>
#else
#include <mysql/mysql.h>
#endif
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
{
MYSQL_ROW row = mysql_fetch_row(res);
if (!row)
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
}
}