mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
75 lines
1.4 KiB
C++
75 lines
1.4 KiB
C++
#include "mysql_request_row.h"
|
|
|
|
MySQLRequestRow::MySQLRequestRow(const MySQLRequestRow& row)
|
|
: m_Result(row.m_Result), m_MySQLRow(row.m_MySQLRow)
|
|
{
|
|
}
|
|
|
|
MySQLRequestRow::MySQLRequestRow()
|
|
: m_Result(nullptr), m_MySQLRow(nullptr)
|
|
{
|
|
}
|
|
|
|
MySQLRequestRow::MySQLRequestRow(MySQLRequestRow&& moveItem)
|
|
{
|
|
m_Result = moveItem.m_Result;
|
|
m_MySQLRow = moveItem.m_MySQLRow;
|
|
|
|
moveItem.m_Result = nullptr;
|
|
moveItem.m_MySQLRow = nullptr;
|
|
}
|
|
|
|
MySQLRequestRow& MySQLRequestRow::operator=(MySQLRequestRow& moveItem)
|
|
{
|
|
m_Result = moveItem.m_Result;
|
|
m_MySQLRow = moveItem.m_MySQLRow;
|
|
|
|
moveItem.m_Result = nullptr;
|
|
moveItem.m_MySQLRow = nullptr;
|
|
|
|
return *this;
|
|
}
|
|
|
|
|
|
MySQLRequestRow MySQLRequestRow::operator*()
|
|
{
|
|
return *this;
|
|
}
|
|
|
|
MySQLRequestRow::MySQLRequestRow(MYSQL_RES *result)
|
|
: m_Result(result)
|
|
{
|
|
if (result != nullptr)
|
|
m_MySQLRow = mysql_fetch_row(result);
|
|
else
|
|
m_MySQLRow = nullptr;
|
|
}
|
|
|
|
MySQLRequestRow& MySQLRequestRow::operator++()
|
|
{
|
|
m_MySQLRow = mysql_fetch_row(m_Result);
|
|
return *this;
|
|
}
|
|
|
|
MySQLRequestRow MySQLRequestRow::operator++(int)
|
|
{
|
|
MySQLRequestRow tmp(*this);
|
|
operator++();
|
|
return tmp;
|
|
}
|
|
|
|
bool MySQLRequestRow::operator==(const MySQLRequestRow& rhs)
|
|
{
|
|
return m_MySQLRow == rhs.m_MySQLRow;
|
|
}
|
|
|
|
bool MySQLRequestRow::operator!=(const MySQLRequestRow& rhs)
|
|
{
|
|
return m_MySQLRow != rhs.m_MySQLRow;
|
|
}
|
|
|
|
char* MySQLRequestRow::operator[](int index)
|
|
{
|
|
return m_MySQLRow[index];
|
|
}
|