diff options
author | Shauren <none@none> | 2010-09-14 13:56:27 +0200 |
---|---|---|
committer | Shauren <none@none> | 2010-09-14 13:56:27 +0200 |
commit | 102e51d620c9a948db4b685cef53a7ed0698bd4c (patch) | |
tree | a14aba2f465f26678242da5a610e2d2510a749bd /src/server/shared/Database/QueryResult.h | |
parent | cdd8f446fa9cd82eeea716934d7aa6d99151d1a8 (diff) |
Core/Pools: Implemented quest pooling
Core/DBLayer: Added GetNumRows() method to PreparedResultSet
--HG--
branch : trunk
Diffstat (limited to 'src/server/shared/Database/QueryResult.h')
-rwxr-xr-x | src/server/shared/Database/QueryResult.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/server/shared/Database/QueryResult.h b/src/server/shared/Database/QueryResult.h index 5e7ff01f819..25661a2b06e 100755 --- a/src/server/shared/Database/QueryResult.h +++ b/src/server/shared/Database/QueryResult.h @@ -208,6 +208,7 @@ class PreparedResultSet const char* GetCString(uint32 index); bool NextRow(); + uint64 GetRowCount() const { return num_rows; } private: bool CheckFieldIndex(uint32 index) const |