diff options
author | pixel <pixel> | 2007-06-14 14:12:20 +0000 |
---|---|---|
committer | pixel <pixel> | 2007-06-14 14:12:20 +0000 |
commit | 452e0e4e41e98df8fcf11e07fa8a0725c43142b4 (patch) | |
tree | c1258ed034d012224d3cebb67f52ce0b5c48432d /include | |
parent | 3f1e5e1c235d7ba4afa1908313901360c7e7658b (diff) |
Consolidating usage of SQL ressources.
Diffstat (limited to 'include')
-rw-r--r-- | include/SQL.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/SQL.h b/include/SQL.h index ff1cd7d..786d28f 100644 --- a/include/SQL.h +++ b/include/SQL.h @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -/* $Id: SQL.h,v 1.11 2007-05-30 11:57:08 pixel Exp $ */ +/* $Id: SQL.h,v 1.12 2007-06-14 14:12:20 pixel Exp $ */ #ifndef __SQL_H__ #define __SQL_H__ @@ -42,7 +42,7 @@ class SQLConnection : public Base { int errno(); String error(); private: - MYSQL con; + MYSQL * con; MYSQL_RES * res; int nr, nf, na, ii; MYSQL_FIELD * fields; |