forked from GameProgressive/ModuleDevelopmentKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuery.cpp
More file actions
219 lines (174 loc) · 4.66 KB
/
Copy pathQuery.cpp
File metadata and controls
219 lines (174 loc) · 4.66 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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
#define MDK_EXPORT_FUNCTIONS 1 /*Export the methods*/
#include "Query.h"
#include "Utility.h"
#include <mysql.h> /*Still using MariaDB Connector C*/
#include <stdio.h>
MDKDLLAPI CResultSet::CResultSet()
{
m_uiPos = 0;
}
MDKDLLAPI CResultSet::~CResultSet()
{
size_t i = 0;
for (; i < m_vvRows.size(); i++)
{
m_vvRows.at(i).clear();
}
m_vvRows.clear();
}
MDKDLLAPI bool CResultSet::ExecuteQuery(CDatabase* db, std::string str)
{
MYSQL_RES *result = NULL;
MYSQL_ROW row;
unsigned int fields = 0;
#ifdef __MARIADB__
if (db->GetDatabaseType() == DATABASE_TYPE_MARIADB)
{
if (mysql_query((MYSQL*)db->GetDatabasePointer(), str.c_str()) != 0)
{
LOG_ERROR("Query", "Cannot execute query. Error: %s\n", mysql_error((MYSQL*)db->GetDatabasePointer()));
return false;
}
result = mysql_store_result((MYSQL*)db->GetDatabasePointer());
if (!result)
{
LOG_ERROR("Query" "Cannot execute query. Error: %s\n", mysql_error((MYSQL*)db->GetDatabasePointer()));
return false;
}
if (result->row_count == 0)
{
mysql_free_result(result);
return true;
}
fields = mysql_num_fields(result);
if (fields == 0)
{
mysql_free_result(result);
return true;
}
row = mysql_fetch_row(result);
if (row == NULL)
{
mysql_free_result(result);
LOG_ERROR("Query", "Cannot execute query. Error: %s\n", mysql_error((MYSQL*)db));
return false;
}
do
{
std::vector<std::string> vec;
unsigned int i = 0;
for (; i < fields; i++)
vec.push_back(row[i]);
m_vvRows.push_back(vec);
} while ((row = mysql_fetch_row(result)));
mysql_free_result(result);
}
#endif
return true;
}
MDKDLLAPI size_t CResultSet::GetTotalRows()
{
return m_vvRows.size();
}
MDKDLLAPI bool CResultSet::GotoFirstRow()
{
if (m_vvRows.size() < 1)
return false;
m_uiPos = 0;
return true;
}
MDKDLLAPI bool CResultSet::GotoNextRow()
{
m_uiPos++;
if (m_vvRows.size() < (m_uiPos+1))
return false;
return true;
}
MDKDLLAPI bool CResultSet::GotoRow(size_t row)
{
m_uiPos = row;
if (m_vvRows.size() < m_uiPos)
return false;
return true;
}
MDKDLLAPI double CResultSet::GetDoubleFromRow(size_t index)
{
if (m_vvRows.at(m_uiPos).size() < index)
return 0;
return atof(m_vvRows.at(m_uiPos).at(index).c_str());
}
unsigned int atoui(const char *x)
{
return (unsigned int)strtol(x, (char **) NULL, 10);
}
MDKDLLAPI unsigned int CResultSet::GetUIntFromRow(size_t index)
{
if (m_vvRows.at(m_uiPos).size() < index)
return 0;
return atoui(m_vvRows.at(m_uiPos).at(index).c_str());
}
MDKDLLAPI std::string CResultSet::GetStringFromRow(size_t index)
{
if (m_vvRows.at(m_uiPos).size() < index)
return 0;
return m_vvRows.at(m_uiPos).at(index);
}
MDKDLLAPI int CResultSet::GetIntFromRow(size_t index)
{
if (m_vvRows.at(m_uiPos).size() < index)
return 0;
return atoi(m_vvRows.at(m_uiPos).at(index).c_str());
}
bool MDKDLLAPI mdk_only_run_query(CDatabase* db, std::string query)
{
if (!db->GetDatabasePointer())
return false;
#ifdef __MARIADB__
if (db->GetDatabaseType() == DATABASE_TYPE_MARIADB)
{
if (mysql_query((MYSQL*)db->GetDatabasePointer(), query.c_str()) != 0)
{
LOG_ERROR("Database", "Cannot execute query. Error: %s\n", mysql_error((MYSQL*)db->GetDatabasePointer()));
return false;
}
}
#endif
#ifdef __SQLITE__
if (db->GetDatabaseType() == DATABASE_TYPE_SQLITE)
{
//*TODO!
}
#endif
return true;
}
bool MDKDLLAPI mdk_escape_query_string(CDatabase* db, std::string& inputString)
{
#ifdef __MARIADB__
if (db->GetDatabaseType() == DATABASE_TYPE_MARIADB)
{
char *temporanyString = (char*)malloc(sizeof(char)*(inputString.length() * 2 + 5));
if (!temporanyString)
return false; // Out of memory, return null string
mysql_real_escape_string((MYSQL*)db->GetDatabasePointer(), temporanyString, inputString.c_str(), inputString.length());
inputString = std::string(temporanyString);
free(temporanyString);
}
#endif
return true;
}