blob: 5cccd1c6e39c27c4d403ee3a89e10a28c27d4cc1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef __SQL_H__
#define __SQL_H__
#include <map>
#include <mysql.h>
#include <Exceptions.h>
typedef std::map<String, String> AssocArray;
class SQLConnection : public Base {
public:
SQLConnection(String host, String user, String passwd, String db, int port = 3306, String socket = "", unsigned long clags = 0) throw (GeneralException);
~SQLConnection();
void query(String) throw (GeneralException);
int numrows();
int numfields();
AssocArray fetchrow();
int numaffectedrows();
int insertid();
private:
MYSQL con;
MYSQL_RES * res;
int nr, nf, na, ii;
MYSQL_FIELD * fields;
};
#endif
|