mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-19 04:42:37 +00:00
22 lines
390 B
C++
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));
|
|
}
|
|
|
|
}
|