-
Notifications
You must be signed in to change notification settings - Fork 0
/
CSQLValue.cpp
289 lines (229 loc) · 8.5 KB
/
CSQLValue.cpp
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Copyright © NetworkDLS 2002, All rights reserved
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#ifndef _CSQLVALUE_CPP
#define _CSQLVALUE_CPP
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#include <Windows.H>
#include <Stdio.H>
#include <SQL.H>
#include <SqlExt.H>
#include "CSQL.H"
#include "CBoundRecordSet.H"
#include "CSQLValue.H"
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
SQLLEN CSQLValue::RTrim(char *sData, SQLLEN iDataSz)
{
SQLLEN iPos = iDataSz;
if (iDataSz == 0)
return iDataSz;//Return the new data length.
if (sData[iDataSz - 1] != ' ')
return iDataSz;//Return the new data length.
iPos--;
while (iPos != 0 && sData[iPos] == ' ')
iPos--;
if (sData[iPos] != ' ')
iPos++;
sData[iPos] = '\0';
return iPos; //Return the new data length.
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CSQLValue::ReplaceSingleQuotes(char *sData, SQLLEN iDataSz)
{
int iRPos = 0;
while (iRPos < iDataSz)
{
if (sData[iRPos] == '\'')
{
sData[iRPos] = '`';
}
iRPos++;
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CSQLValue::Initialize(LPRECORDSET_COLUMNINFO lpColumnValue,
bool bTrimCharData, bool bReplaceSingleQuotes, bool bThrowErrors)
{
this->TrimCharData(bTrimCharData);
this->ReplaceSingleQuotes(bReplaceSingleQuotes);
this->ThrowErrors(bThrowErrors);
this->lpCValue = lpColumnValue;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool CSQLValue::IsValid(void)
{
return this->bcIsValid;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool CSQLValue::IsNull(void)
{
return this->lpCValue->Data.IsNull;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
SQLLEN CSQLValue::Size(void)
{
return this->lpCValue->Data.Size;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
SQLLEN CSQLValue::ToString(char *sOut, int iMaxSz)
{
if (this == NULL || this->lpCValue == NULL || this->lpCValue->Data.IsNull)
{
sOut[0] = '\0';
return 0;
}
memcpy_s(sOut, iMaxSz, this->ToString(), this->lpCValue->Data.Size);
sOut[this->lpCValue->Data.Size] = '\0';
return this->lpCValue->Data.Size;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
char *CSQLValue::ToString(void)
{
if (this == NULL || this->lpCValue == NULL || this->lpCValue->Data.IsNull)
{
return NULL;
}
if (this->lpCValue->DataType == SQLTypes::Char || this->lpCValue->DataType == SQLTypes::NChar)
{
if (this->bcTrimCharData)
{
this->RTrim(((char *)this->lpCValue->Data.Buffer), this->lpCValue->Data.Size);
}
if (this->bcReplaceSingleQuotes)
{
this->ReplaceSingleQuotes(((char *)this->lpCValue->Data.Buffer), this->lpCValue->Data.Size);
}
}
else if (this->lpCValue->DataType == SQLTypes::VarChar || this->lpCValue->DataType == SQLTypes::NVarChar)
{
if (this->bcReplaceSingleQuotes)
{
this->ReplaceSingleQuotes(((char *)this->lpCValue->Data.Buffer), this->lpCValue->Data.Size);
}
}
return (char *)this->lpCValue->Data.Buffer;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool CSQLValue::ToBoolean(void)
{
if (this == NULL || this->lpCValue == NULL || this->lpCValue->Data.IsNull)
{
return 0;
}
return *(bool *)this->lpCValue->Data.Buffer;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
signed int CSQLValue::ToIntegerS(void)
{
if (this == NULL || this->lpCValue == NULL || this->lpCValue->Data.IsNull)
{
return 0;
}
return *(signed int *)this->lpCValue->Data.Buffer;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
unsigned int CSQLValue::ToIntegerU(void)
{
if (this == NULL || this->lpCValue == NULL || this->lpCValue->Data.IsNull)
{
return 0;
}
return *(unsigned int *)this->lpCValue->Data.Buffer;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
signed short CSQLValue::ToShortS(void)
{
if (this == NULL || this->lpCValue == NULL || this->lpCValue->Data.IsNull)
{
return 0;
}
return *(signed short *)this->lpCValue->Data.Buffer;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
unsigned short CSQLValue::ToShortU(void)
{
if (this == NULL || this->lpCValue == NULL || this->lpCValue->Data.IsNull)
{
return 0;
}
return *(unsigned short *)this->lpCValue->Data.Buffer;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
double CSQLValue::ToDouble(void)
{
if (this == NULL || this->lpCValue == NULL || this->lpCValue->Data.IsNull)
{
return 0;
}
return *(double *)this->lpCValue->Data.Buffer;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
float CSQLValue::ToFloat(void)
{
if (this == NULL || this->lpCValue == NULL || this->lpCValue->Data.IsNull)
{
return 0;
}
return *(float *)this->lpCValue->Data.Buffer;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
unsigned __int64 CSQLValue::ToI64U(void)
{
if (this == NULL || this->lpCValue == NULL || this->lpCValue->Data.IsNull)
{
return 0;
}
return *(unsigned __int64 *)this->lpCValue->Data.Buffer;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
signed __int64 CSQLValue::ToI64S(void)
{
if (this == NULL || this->lpCValue == NULL || this->lpCValue->Data.IsNull)
{
return 0;
}
return *(signed __int64 *)this->lpCValue->Data.Buffer;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool CSQLValue::ThrowErrors(void)
{
return this->bcThrowErrors;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool CSQLValue::ThrowErrors(bool bThrowErrors)
{
bool bOldValue = this->bcThrowErrors;
this->bcThrowErrors = bThrowErrors;
return bOldValue;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool CSQLValue::TrimCharData(void)
{
return this->bcTrimCharData;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool CSQLValue::TrimCharData(bool bTrimCharData)
{
bool bOldValue = this->bcTrimCharData;
this->bcTrimCharData = bTrimCharData;
return bOldValue;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool CSQLValue::ReplaceSingleQuotes(void)
{
return this->bcReplaceSingleQuotes;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
bool CSQLValue::ReplaceSingleQuotes(bool bReplaceSingleQuotes)
{
bool bOldValue = this->bcReplaceSingleQuotes;
this->bcReplaceSingleQuotes = bReplaceSingleQuotes;
return bOldValue;
}
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
#endif