forked from tomsoftware/EOS-Formats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclDB.cs
423 lines (341 loc) · 12 KB
/
clDB.cs
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
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
using System;
using System.Data.Odbc;
using System.Collections;
namespace Demo
{
public class clDB
{
public enum ENUM_DB_TYPE
{
DB_MYSQL,
DB_DB2
}
private OdbcConnection m_con;
private OdbcDataReader m_rec;
private Hashtable m_fieldNames;
public bool eof;
private ENUM_DB_TYPE m_db_type;
//---------------------------------------------------//
public clDB(String connectionString, ENUM_DB_TYPE DBType)
{
m_con = null;
m_rec = null;
eof = true;
m_db_type = DBType;
try
{
m_con = new OdbcConnection(connectionString);
m_con.Open();
}
catch(Exception e)
{
m_con = null;
Form1.addError(e.Message);
}
}
//---------------------------------------------------//
private bool execute_query(out OdbcDataReader rec, out bool set_eof, out Hashtable fieldNames, string query, int RecordLimit = -1)
{
rec = null;
set_eof = true;
fieldNames = new Hashtable(0);
if (m_con==null) return false;
OdbcCommand cmd;
if (RecordLimit >= 0)
{
query += SQL_LIMIT_FORMAT(RecordLimit);
}
try
{
cmd = new OdbcCommand(query, m_con);
}
catch (Exception e)
{
Form1.addError(e.Message);
Form1.addError(query);
return false;
}
//-- execute --/
try
{
rec = cmd.ExecuteReader();
}
catch (Exception e)
{
Form1.addError(e.Message);
Form1.addError(query);
return false;
}
try
{
set_eof = !rec.Read();
}
catch (Exception e)
{
Form1.addError(e.Message);
Form1.addError(query);
set_eof = true;
return false;
}
//-- read Fieldnames --//
int l = rec.FieldCount;
fieldNames = new Hashtable(l);
for (int i = 0; i < l; i++)
{
fieldNames.Add(rec.GetName(i).ToLower(), i);
}
return true;
}
//---------------------------------------------------//
public bool execute(string query, int RecordLimit = -1)
{
return execute_query(out m_rec, out eof, out m_fieldNames, query, RecordLimit);
}
//---------------------------------------------------//
public void setListViewHeader(System.Windows.Forms.ListView listView, string keyField, int[] ColumnWidth)
{
if (m_rec == null) return;
//if (eof) return;
int count = m_rec.FieldCount;
int countOut = count;
if (count < 1) return;
listView.Columns.Clear();
//- find field-Index for key
string key = keyField.ToLower();
int keyFieldIndex = -1;
if (m_fieldNames.ContainsKey(key))
{
keyFieldIndex = (int)m_fieldNames[key];
countOut = count - 1;
}
//- read row
string[] items = new string[countOut];
int j = 0;
int currentColumnWidth = 200;
for (int i = 0; i < count; i++)
{
if (i != keyFieldIndex)
{
if (j < ColumnWidth.Length) currentColumnWidth = ColumnWidth[j];
listView.Columns.Add(m_rec.GetName(i), currentColumnWidth);
j++;
}
}
}
public static string Hex2String(string hex)
{
string result = "";
int count = hex.Length / 2;
int s;
for (s = 0; s < count; s++)
{
string zeichen = hex.Substring(s * 2, 2);
result += (char)Convert.ToUInt16(zeichen, 16);
}
return result;
}
//---------------------------------------------------//
public System.Windows.Forms.ListViewItem getListViewRow(string keyField)
{
if (m_rec == null) return new System.Windows.Forms.ListViewItem("");
if (eof) return new System.Windows.Forms.ListViewItem("");
int count = m_rec.FieldCount;
int countOut = count;
if (count<1) return new System.Windows.Forms.ListViewItem("");
//- find field-Index for key
string key = keyField.ToLower();
int keyFieldIndex = -1;
if (m_fieldNames.ContainsKey(key))
{
keyFieldIndex = (int)m_fieldNames[key];
countOut = count - 1;
}
//- read row
string[] items = new string[countOut];
int j = 0;
for (int i = 0; i < count; i++)
{
if (i != keyFieldIndex)
{
if (m_rec.GetDataTypeName(i).ToUpper() != "BLOB")
{
try
{
items[j] = m_rec.GetValue(i).ToString();
}
catch (Exception) { }
}
else
{
try
{
items[j] = Hex2String(m_rec.GetString(i));
}
catch (Exception) { }
}
j++;
}
}
//- create new intem
System.Windows.Forms.ListViewItem Item = new System.Windows.Forms.ListViewItem(items);
//- add key-Value to item
if (keyFieldIndex >= 0) Item.Name = m_rec.GetValue(keyFieldIndex).ToString();
return Item;
}
//---------------------------------------------------//
public bool MoveNext()
{
if (m_rec == null) return false;
try
{
eof = !m_rec.Read();
}
catch (Exception e)
{
Form1.addError(e.Message);
eof = true;
return false;
}
return !eof;
}
//---------------------------------------------------//
public string FieldName(int index)
{
if (m_rec == null) return "";
if (eof) return "";
if ((index < 0) && (index >= m_rec.FieldCount)) return "";
return m_rec.GetName(index);
}
//---------------------------------------------------//
public int FieldCount()
{
if (m_rec == null) return 0;
return m_rec.FieldCount;
}
//---------------------------------------------------//
public string FieldStr(string fieldName, string defaultReturn="")
{
if (m_rec == null) return defaultReturn;
if (eof) return defaultReturn;
string key = fieldName.ToLower();
if (!m_fieldNames.ContainsKey(key)) return defaultReturn;
try
{
return m_rec.GetValue((int)m_fieldNames[key]).ToString();
}
catch (Exception)
{
return defaultReturn;
}
}
//---------------------------------------------------//
public int FieldInt(string fieldName, int defaultReturn = 0)
{
if (m_rec == null) return defaultReturn;
if (eof) return defaultReturn;
try
{
return Convert.ToInt32(FieldStr(fieldName, defaultReturn.ToString()));
}
catch
{
return defaultReturn;
}
}
//---------------------------------------------------//
public double FieldDouble(string fieldName, double defaultReturn = 0)
{
if (m_rec == null) return defaultReturn;
if (eof) return defaultReturn;
try
{
return Convert.ToDouble(FieldStr(fieldName, defaultReturn.ToString()));
}
catch
{
return defaultReturn;
}
}
//---------------------------------------------------//
public Record[] execute_to_array(string query, string keyField, string valueField)
{
OdbcDataReader my_rec;
Hashtable my_fieldNames;
bool my_eof;
Record [] outRec = new Record[0];
if (!execute_query(out my_rec, out my_eof, out my_fieldNames, query)) return outRec;
string key_v = keyField.ToLower();
string value_v = valueField.ToLower();
if (!my_fieldNames.ContainsKey(key_v)) return outRec;
if (!my_fieldNames.ContainsKey(value_v)) return outRec;
int key_i = (int)my_fieldNames[key_v];
int value_i = (int)my_fieldNames[value_v];
int RecCount = 0;
outRec = new Record[10];
while (!my_eof)
{
try
{
outRec[RecCount] = new Record(my_rec.GetValue(key_i).ToString(), my_rec.GetValue(value_i).ToString());
RecCount++;
my_eof = !my_rec.Read();
}
catch (Exception e)
{
Form1.addError(e.Message);
my_eof = true;
return outRec;
}
if (my_eof) break;
if (RecCount >= outRec.Length)
{
Array.Resize(ref outRec, outRec.Length + 20);
}
}
//- remove empty elements at the end!
Array.Resize(ref outRec, RecCount);
return outRec;
}
//---------------------------------------------------//
public string SQL_LIMIT_FORMAT(int count)
{
switch(m_db_type)
{
case ENUM_DB_TYPE.DB_DB2:
return " FETCH FIRST " + count + " ROWS ONLY ";
case ENUM_DB_TYPE.DB_MYSQL:
return " LIMIT 0," + count + " ";
}
return "";
}
//---------------------------------------------------//
public string ToEscapeStr(string value2Escape)
{
try
{
return "'" + System.Text.RegularExpressions.Regex.Replace(value2Escape, @"[\000\010\011\012\015\032\042\047\134\140]", "\\$0") + "'";
}
catch
{
return "''";
}
}
//---------------------------------------------------//
//---------------------------------------------------//
//---------------------------------------------------//
public class Record
{
public string value;
public string key;
public Record(string new_key, string new_value)
{
value = new_value;
key = new_key;
}
public override string ToString()
{
return value;
}
}
}
}