1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2026-02-14 02:07:14 +01:00

Empty registration of the MySQL statement and result set.

This commit is contained in:
Sandu Liviu Catalin
2016-06-03 22:25:06 +03:00
parent 525148ccd1
commit 201a6e0016
4 changed files with 51 additions and 1 deletions

View File

@@ -29,6 +29,18 @@ Int32 ResultSet::Cmp(const ResultSet & o) const
}
}
// ------------------------------------------------------------------------------------------------
CSStr ResultSet::ToString() const
{
// Do we have a valid handle?
if (m_Handle)
{
ToStrF("%u", m_Handle->mFieldCount);
}
// Default to an empty string
return _SC("");
}
// ------------------------------------------------------------------------------------------------
SQInteger ResultSet::GetInt8(Uint32 idx) const
{