-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathKLib.sqlstring.pas
More file actions
236 lines (206 loc) · 7.67 KB
/
Copy pathKLib.sqlstring.pas
File metadata and controls
236 lines (206 loc) · 7.67 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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
{
KLib Version = 4.0
The Clear BSD License
Copyright (c) 2020 by Karol De Nery Ortiz LLave. All rights reserved.
zitrokarol@gmail.com
Redistribution and use in source and binary forms, with or without
modification, are permitted (subject to the limitations in the disclaimer
below) provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE GRANTED BY
THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
}
unit KLib.sqlstring;
interface
uses
KLib.Constants;
type
sqlstring = type string;
TSQLStringHelper = record helper for sqlstring
procedure paramByNameAsDate(paramName: string; value: TDateTime;
caseSensitive: boolean = NOT_CASE_SENSITIVE);
procedure paramByNameAsDateTime(paramName: string;
value: TDateTime; formatting: string = DATETIME_FORMAT;
caseSensitive: boolean = NOT_CASE_SENSITIVE);
procedure paramByNameAsInteger(paramName: string; value: integer;
caseSensitive: boolean = NOT_CASE_SENSITIVE);
procedure paramByNameAsFloat(paramName: string; value: Double;
decimalSeparator: char = MYSQL_DECIMAL_SEPARATOR;
caseSensitive: boolean = NOT_CASE_SENSITIVE);
procedure paramByNameAsString(paramName: string; value: double;
decimalSeparator: char = DECIMAL_SEPARATOR_IT;
caseSensitive: boolean = NOT_CASE_SENSITIVE); overload;
procedure paramByNameAsString(paramName: string; value: integer;
caseSensitive: boolean = NOT_CASE_SENSITIVE); overload;
procedure paramByNameAsString(paramName: string; value: string;
caseSensitive: boolean = NOT_CASE_SENSITIVE); overload;
procedure paramByNameAsNull(paramName: string;
caseSensitive: boolean = NOT_CASE_SENSITIVE);
procedure setParamAsDoubleQuotedString(
paramName: string;
value: string;
caseSensitive: boolean = NOT_CASE_SENSITIVE;
isSQLSeparatorsEnabled: boolean = false);
procedure setParamAsString(
paramName: string;
value: string;
caseSensitive: boolean = NOT_CASE_SENSITIVE;
isSQLSeparatorsEnabled: boolean = false);
procedure saveToFile(fileName: string);
end;
implementation
uses
KLib.Common, KLib.mystring, KLib.DateTimeUtils, KLib.StringUtils,
System.SysUtils, System.RegularExpressions;
const
ENABLE_SQL_SEPARATORS = true;
procedure TSQLStringHelper.paramByNameAsDate(paramName: string; value: TDateTime;
caseSensitive: boolean = NOT_CASE_SENSITIVE);
begin
paramByNameAsDateTime(paramName, value, DATE_FORMAT, caseSensitive);
end;
procedure TSQLStringHelper.paramByNameAsDateTime(paramName: string;
value: TDateTime;
formatting: string = DATETIME_FORMAT;
caseSensitive: boolean = NOT_CASE_SENSITIVE);
var
_dateTimeAsStringWithFormatting: string;
begin
_dateTimeAsStringWithFormatting := getDateTimeWithFormattingAsString(value, formatting);
setParamAsDoubleQuotedString(paramName, _dateTimeAsStringWithFormatting, caseSensitive,
ENABLE_SQL_SEPARATORS);
end;
procedure TSQLStringHelper.paramByNameAsInteger(paramName: string;
value: integer; caseSensitive: boolean = NOT_CASE_SENSITIVE);
var
_integerAsString: string;
begin
_integerAsString := IntToStr(value);
setParamAsString(paramName, _integerAsString, caseSensitive, ENABLE_SQL_SEPARATORS);
end;
procedure TSQLStringHelper.paramByNameAsFloat(paramName: string; value: Double;
decimalSeparator: char = MYSQL_DECIMAL_SEPARATOR;
caseSensitive: boolean = NOT_CASE_SENSITIVE);
var
_doubleAsString: string;
begin
_doubleAsString := getDoubleAsString(value, decimalSeparator);
setParamAsString(paramName, _doubleAsString, caseSensitive, ENABLE_SQL_SEPARATORS);
end;
procedure TSQLStringHelper.paramByNameAsString(paramName: string; value: double;
decimalSeparator: char = DECIMAL_SEPARATOR_IT;
caseSensitive: boolean = NOT_CASE_SENSITIVE);
var
_doubleAsString: string;
begin
_doubleAsString := getDoubleAsString(value, decimalSeparator);
paramByNameAsString(paramName, _doubleAsString, caseSensitive);
end;
procedure TSQLStringHelper.paramByNameAsString(paramName: string; value: integer;
caseSensitive: boolean = NOT_CASE_SENSITIVE);
var
_integerAsString: string;
begin
_integerAsString := IntToStr(value);
paramByNameAsString(paramName, _integerAsString, caseSensitive);
end;
procedure TSQLStringHelper.paramByNameAsString(paramName: string; value: string;
caseSensitive: boolean = NOT_CASE_SENSITIVE);
begin
setParamAsDoubleQuotedString(paramName, value, caseSensitive,
ENABLE_SQL_SEPARATORS);
end;
procedure TSQLStringHelper.paramByNameAsNull(paramName: string;
caseSensitive: boolean = NOT_CASE_SENSITIVE);
begin
setParamAsString(paramName, 'NULL', caseSensitive, ENABLE_SQL_SEPARATORS);
end;
procedure TSQLStringHelper.setParamAsDoubleQuotedString(
paramName: string;
value: string;
caseSensitive: boolean = NOT_CASE_SENSITIVE;
isSQLSeparatorsEnabled: boolean = false
);
var
_doubleQuotedValue: string;
begin
_doubleQuotedValue := getMySQLDoubleQuotedString(value);
setParamAsString(paramName, _doubleQuotedValue, caseSensitive, isSQLSeparatorsEnabled);
end;
procedure TSQLStringHelper.setParamAsString(
paramName: string;
value: string;
caseSensitive: boolean = NOT_CASE_SENSITIVE;
isSQLSeparatorsEnabled: boolean = false
);
const
SQL_SEPARATORS = ' ,;:=()\r\n';
var
_param: string;
_pattern: string;
_flags: string;
_safeReplacement: string;
_regex: TRegEx;
begin
_param := trim(paramName);
if _param = '' then
begin
Exit;
end;
if _param[1] <> ':' then
begin
_param := ':' + _param;
end;
if (isSQLSeparatorsEnabled) then
begin
if (caseSensitive) then
begin
_flags := '';
end;
if (not caseSensitive) then
begin
_flags := '(?i)';
end;
_pattern := '(?<!\w)' + TRegEx.Escape(_param) + '(?!\w)';
_regex := TRegEx.Create(_flags + _pattern);
_safeReplacement := StringReplace(value, '\', '\\', [rfReplaceAll]);
_safeReplacement := StringReplace(_safeReplacement, '$', '$$', [rfReplaceAll]);
Self := _regex.Replace(Self, _safeReplacement);
end;
if (not isSQLSeparatorsEnabled) then
begin
if (caseSensitive) then
begin
Self := StringReplace(Self, _param, value, [rfReplaceAll])
end;
if (not caseSensitive) then
begin
Self := StringReplace(Self, _param, value, [rfReplaceAll, rfIgnoreCase]);
end;
end;
end;
procedure TSQLStringHelper.saveToFile(fileName: string);
var
_mystring: mystring;
begin
_mystring := Self;
_mystring.saveToFile(fileName);
end;
end.