diff options
author | megamage <none@none> | 2009-06-01 21:52:17 -0500 |
---|---|---|
committer | megamage <none@none> | 2009-06-01 21:52:17 -0500 |
commit | 7344a5ef6f776f355cda34da77d2aed01f228b47 (patch) | |
tree | 8f02e0317c9a53de26f59f64f43456f397a4724c /src/shared/Database/QueryResultMysql.h | |
parent | b05ebfa8e90def21baa98707a1d5e9185950de74 (diff) |
[7935] Move seldom used access to query data by field names to independent object. Author: VladimirMangos
This let not do preparation code for unused later functionlity.
--HG--
branch : trunk
Diffstat (limited to 'src/shared/Database/QueryResultMysql.h')
-rw-r--r-- | src/shared/Database/QueryResultMysql.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/Database/QueryResultMysql.h b/src/shared/Database/QueryResultMysql.h index 06b1353c12e..89aceb12b13 100644 --- a/src/shared/Database/QueryResultMysql.h +++ b/src/shared/Database/QueryResultMysql.h @@ -34,7 +34,7 @@ class QueryResultMysql : public QueryResult { public: - QueryResultMysql(MYSQL_RES *result, uint64 rowCount, uint32 fieldCount); + QueryResultMysql(MYSQL_RES *result, MYSQL_FIELD *fields, uint64 rowCount, uint32 fieldCount); ~QueryResultMysql(); |