diff options
Diffstat (limited to 'include/SQL.h')
-rw-r--r-- | include/SQL.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/SQL.h b/include/SQL.h index 4385a6d..5cccd1c 100644 --- a/include/SQL.h +++ b/include/SQL.h @@ -15,10 +15,12 @@ class SQLConnection : public Base { int numrows(); int numfields(); AssocArray fetchrow(); + int numaffectedrows(); + int insertid(); private: MYSQL con; MYSQL_RES * res; - int nr, nf; + int nr, nf, na, ii; MYSQL_FIELD * fields; }; |