diff options
Diffstat (limited to 'src/server/shared/Database/QueryResult.h')
-rwxr-xr-x | src/server/shared/Database/QueryResult.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/shared/Database/QueryResult.h b/src/server/shared/Database/QueryResult.h index 3aef0d13a5a..096c562b33c 100755 --- a/src/server/shared/Database/QueryResult.h +++ b/src/server/shared/Database/QueryResult.h @@ -114,7 +114,7 @@ class ResultBind CleanUp(); // Clean up buffer } - void BindResult(uint32& num_rows); + void BindResult(uint64& num_rows); protected: MYSQL_BIND* m_rBind; @@ -228,8 +228,8 @@ class PreparedResultSet } ResultBind* rbind; - uint32 row_position; - uint32 num_rows; + uint64 row_position; + uint64 num_rows; }; typedef ACE_Refcounted_Auto_Ptr<PreparedResultSet, ACE_Null_Mutex> PreparedQueryResult; |