2019-09-24 22:28:59 +00:00
|
|
|
#if __has_include(<mysql.h>)
|
|
|
|
#include <mysql.h>
|
2018-07-25 11:29:26 +00:00
|
|
|
#else
|
2017-01-24 21:07:08 +00:00
|
|
|
#include <mysql/mysql.h>
|
2018-07-25 11:29:26 +00:00
|
|
|
#endif
|
2017-04-19 00:25:57 +00:00
|
|
|
|
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
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
MYSQL_ROW row = mysql_fetch_row(res);
|
|
|
|
if (!row)
|
|
|
|
checkError(conn->getDriver());
|
2011-03-03 19:57:34 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
return Row(row, this, mysql_fetch_lengths(res));
|
2011-03-03 19:57:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|