[go: up one dir, main page]

Menu

[r9]: / client / sqlclient.h  Maximize  Restore  History

Download this file

72 lines (51 with data), 1.1 kB

 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#ifndef __SQL_CLIENT_H__
#define __SQL_CLIENT_H_
#include <routing.h>
#include <gmp.h>
#include <index.h>
#include <data.h>
#include <query.h>
class CSQLClient
{
friend class CQuery;
public:
CSQLClient();
CSQLClient(const int& protocol);
~CSQLClient();
public:
int connect(const string& server, const int& port);
int close();
public:
CQuery* createQueryHandle();
void releaseFileHandle(CQuery* q);
int execute(const string& q);
private:
int lookup(string table, Node* n);
private:
string m_strServerHost;
int m_iServerPort;
CGMP* m_pGMP;
int m_iProtocol; // 1 UDT 2 TCP
};
class CQuery
{
public:
CQuery();
~CQuery();
public:
int open(const string& query);
int close();
int execute(); // return number of rows?
int fetch(chat* res, int& rows, int& size);
private:
CSQLClient* m_pSQLClient;
string m_strServerIP;
int m_iServerPort;
CGMP m_GMP;
string m_strQuery;
CQueryAttr* m_pQuery;
int m_iProtocol; // 1 UDT 2 TCP
UDTSOCKET m_uSock;
int m_tSock;
};
#endif