optimize MySQLResult

This commit is contained in:
XieHan
2020-11-03 02:18:01 +08:00
parent f11f296b98
commit 49586bfc4a
2 changed files with 45 additions and 61 deletions

View File

@@ -149,12 +149,14 @@ public:
void reset(MySQLResponse *resp);
private:
void __init(MySQLResponse *resp);
void __init();
void __clear();
void init(MySQLResponse *resp);
void init();
void clear();
void fetch_result_set(const struct __mysql_result_set *result_set);
template<class T>
bool __fetch_row(T& row_map);
bool fetch_row(T& row_map);
const void *start;
const void *end;