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-15 20:56:42 +00:00
|
|
|
#include <mysqlxx/Connection.h>
|
2011-03-03 19:57:34 +00:00
|
|
|
#include <mysqlxx/ResultBase.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace mysqlxx
|
|
|
|
{
|
|
|
|
|
2011-04-28 20:20:27 +00:00
|
|
|
ResultBase::ResultBase(MYSQL_RES * res_, Connection * conn_, const Query * query_) : res(res_), conn(conn_), query(query_)
|
2011-03-03 19:57:34 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
fields = mysql_fetch_fields(res);
|
|
|
|
num_fields = mysql_num_fields(res);
|
2011-03-03 19:57:34 +00:00
|
|
|
}
|
|
|
|
|
2017-01-13 20:37:37 +00:00
|
|
|
ResultBase::~ResultBase()
|
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
mysql_free_result(res);
|
2017-01-13 20:37:37 +00:00
|
|
|
}
|
|
|
|
|
2020-12-09 08:19:09 +00:00
|
|
|
std::string ResultBase::getFieldName(size_t n) const
|
|
|
|
{
|
|
|
|
if (num_fields <= n)
|
|
|
|
throw Exception(std::string("Unknown column position ") + std::to_string(n));
|
|
|
|
|
|
|
|
return fields[n].name;
|
|
|
|
}
|
|
|
|
|
2011-03-03 19:57:34 +00:00
|
|
|
}
|