summaryrefslogtreecommitdiff
path: root/lib/SQL.cc
blob: 5f863808b1fe46230f5a4ecdd0c3cf695d260d5c (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
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
 *  Baltisot
 *  Copyright (C) 1999-2007 Nicolas "Pixel" Noble
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

/* $Id: SQL.cc,v 1.14 2007-06-14 14:12:20 pixel Exp $ */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#ifdef HAVE_MYSQL
#ifdef _WIN32
#include <winsock.h>
#endif

#include "SQL.h"

SQLConnection::SQLConnection(const String & host, const String & user, const String & passwd,
                             const String & db, int port, const String & socket,
			     unsigned long cflags) throw (GeneralException) : res(0) {
    con = mysql_init(0);
    
    const char * phost = ((ugly_string) host).p;
    const char * puser = ((ugly_string) user).p;
    const char * ppasswd = ((ugly_string) passwd).p;
    const char * pdb = ((ugly_string) db).p;
    const char * psocket = ((ugly_string) socket).p;
    
    phost = *phost ? phost : 0;
    psocket = *psocket ? psocket : 0;
    
    if (!mysql_real_connect(con, phost, puser, ppasswd, pdb, port, psocket, cflags)) {
	throw GeneralException("Could not connect to MySQL host " + host);
    }
}

SQLConnection::~SQLConnection() {
    mysql_close(con);
}

int SQLConnection::query(const String & q) {
    int r;

    if (res) {
	mysql_free_result(res);
    }

    res = 0;

    if ((r = mysql_real_query(con, ((ugly_string)q).p, q.strlen()))) {
        return r;
    }
    
    res = mysql_store_result(con);
    
    if (res) {
	nr = mysql_num_rows(res);
	nf = mysql_num_fields(res);
	fields = mysql_fetch_fields(res);
        na = mysql_affected_rows(con);
        ii = mysql_insert_id(con);
    } else {
	nr = 0;
	nf = 0;
	fields = 0;
        na = 0;
        ii = -1;
    }

    return r;
}

int SQLConnection::numrows() {
    return nr;
}

int SQLConnection::numfields() {
    return nf;
}

AssocArray SQLConnection::fetchrow() {
    AssocArray r;
    MYSQL_ROW row;
    int i;
    
    row = mysql_fetch_row(res);
    
    if (row) {
        for (i = 0; i < nf; i++) {
    	    r[fields[i].name] = row[i];
        }
    }
    
    return r;
}

int SQLConnection::numaffectedrows() {
    return na;
}

int SQLConnection::insertid() {
    return ii;
}

int SQLConnection::errno() {
    return mysql_errno(con);
}

String SQLConnection::error() {
    return mysql_error(con);
}

#endif