aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Database/QueryResult.h
diff options
context:
space:
mode:
authorShauren <none@none>2010-09-14 13:56:27 +0200
committerShauren <none@none>2010-09-14 13:56:27 +0200
commit102e51d620c9a948db4b685cef53a7ed0698bd4c (patch)
treea14aba2f465f26678242da5a610e2d2510a749bd /src/server/shared/Database/QueryResult.h
parentcdd8f446fa9cd82eeea716934d7aa6d99151d1a8 (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-xsrc/server/shared/Database/QueryResult.h1
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