]> git.saurik.com Git - wxWidgets.git/blame - samples/db/dbtest.cpp
Added gnome files to gtk dist.
[wxWidgets.git] / samples / db / dbtest.cpp
CommitLineData
108106cf
JS
1///////////////////////////////////////////////////////////////////////////////
2// Name: dbtest.cpp
be5a51fb 3// Purpose: wxWidgets database demo app
108106cf
JS
4// Author: George Tasker
5// Modified by:
6// Created: 1998
7// RCS-ID: $Id$
8// Copyright: (c) 1998 Remstar International, Inc.
9// Licence: wxWindows licence
10///////////////////////////////////////////////////////////////////////////////
11
12/*
e70e8f4c 13 * SYNOPSIS START
108106cf 14
e70e8f4c
GT
15 This sample program demonstrates the cross-platform ODBC database classes
16 donated by the development team at Remstar International.
108106cf 17
e70e8f4c 18 The table this sample is based on is developer contact table, and shows
f6bcfd97 19 some of the simple uses of the database classes wxDb and wxDbTable.
108106cf 20
e70e8f4c 21 * SYNOPSIS END
108106cf
JS
22 */
23
24#ifdef __GNUG__
25#pragma implementation "dbtest.h"
26#endif
27
28#include "wx/wxprec.h"
29
30#ifdef __BORLANDC__
31#pragma hdrstop
32#endif //__BORLANDC__
33
34#ifndef WX_PRECOMP
fb86524f 35#include "wx/wx.h"
108106cf
JS
36#endif //WX_PRECOMP
37
52ad8c7d 38#if defined(__WXGTK__) || defined(__WXX11__) || defined(__WXMAC__)
7e616b10
RR
39#include "db.xpm"
40#endif
41
5b077d48 42#include <stdio.h> /* Included strictly for reading the text file with the database parameters */
108106cf 43
fb86524f
GD
44//#include "wx/db.h" /* Required in the file which will get the data source connection */
45//#include "wx/dbtable.h" /* Has the wxDbTable object from which all data objects will inherit their data table functionality */
108106cf 46
3fe813a9 47//extern wxDbList WXDLLEXPORT *PtrBegDbList; /* from db.cpp, used in getting back error results from db connections */
108106cf 48
9b12bd99 49#if wxUSE_GRID
fb86524f
GD
50#include "wx/grid.h"
51#include "wx/generic/gridctrl.h"
52#include "wx/dbgrid.h"
f21b2fd8
GT
53
54#define CHOICEINT
55#endif
56
5b077d48
RR
57#include "dbtest.h" /* Header file for this demonstration program */
58#include "listdb.h" /* Code to support the "Lookup" button on the editor dialog */
1fc5dd6f
JS
59
60IMPLEMENT_APP(DatabaseDemoApp)
61
049977d0
GT
62extern wxChar ListDB_Selection[]; /* Used to return the first column value for the selected line from the listDB routines */
63extern wxChar ListDB_Selection2[]; /* Used to return the second column value for the selected line from the listDB routines */
108106cf 64
da1e87c4
GT
65#ifdef wxODBC_BLOB_SUPPORT
66 #include "wx/file.h"
67 #include "wx/mstream.h"
68 #include "wx/image.h"
69 #include "wx/bitmap.h"
70 #include "wx/statbmp.h"
71#endif
5d59e67a
GT
72
73#if !wxUSE_ODBC
74 #error Sample cannot be compiled unless setup.h has wxUSE_ODBC set to 1
75#endif
76
77
aaf0836c 78bool DataTypeSupported(wxDb *pDb, SWORD datatype, wxString *nativeDataTypeName)
3fe813a9
GT
79{
80 wxDbSqlTypeInfo sqlTypeInfo;
81
6d841efd 82 bool breakpoint = false;
3fe813a9 83
aaf0836c 84 *nativeDataTypeName = wxEmptyString;
3fe813a9 85 if (pDb->GetDataTypeInfo(datatype, sqlTypeInfo))
aaf0836c
GT
86 {
87 *nativeDataTypeName = sqlTypeInfo.TypeName;
6d841efd 88 breakpoint = true;
aaf0836c 89 }
3fe813a9
GT
90
91 return breakpoint;
92
93} // GetDataTypesSupported();
94
95
96
97void CheckSupportForAllDataTypes(wxDb *pDb)
98{
aaf0836c
GT
99 wxString nativeDataTypeName;
100
74de91cc 101 wxLogMessage(wxT("\nThe following datatypes are supported by the\ndatabase you are currently connected to:"));
3fe813a9 102#ifdef SQL_C_BINARY
aaf0836c
GT
103 if (DataTypeSupported(pDb,SQL_C_BINARY, &nativeDataTypeName))
104 {
74de91cc 105 nativeDataTypeName = wxT("SQL_C_BINARY (") + nativeDataTypeName;
9b12bd99 106 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
107 wxLogMessage(nativeDataTypeName);
108 }
3fe813a9
GT
109#endif
110#ifdef SQL_C_BIT
aaf0836c
GT
111 if (DataTypeSupported(pDb,SQL_C_BIT, &nativeDataTypeName))
112 {
74de91cc 113 nativeDataTypeName = wxT("SQL_C_BIT (") + nativeDataTypeName;
9b12bd99 114 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
115 wxLogMessage(nativeDataTypeName);
116 }
3fe813a9
GT
117#endif
118#ifdef SQL_C_BOOKMARK
aaf0836c
GT
119 if (DataTypeSupported(pDb,SQL_C_BOOKMARK, &nativeDataTypeName))
120 {
74de91cc 121 nativeDataTypeName = wxT("SQL_C_BOOKMARK (") + nativeDataTypeName;
9b12bd99 122 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
123 wxLogMessage(nativeDataTypeName);
124 }
3fe813a9
GT
125#endif
126#ifdef SQL_C_CHAR
aaf0836c
GT
127 if (DataTypeSupported(pDb,SQL_C_CHAR, &nativeDataTypeName))
128 {
74de91cc 129 nativeDataTypeName = wxT("SQL_C_CHAR (") + nativeDataTypeName;
9b12bd99 130 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
131 wxLogMessage(nativeDataTypeName);
132 }
3fe813a9
GT
133#endif
134#ifdef SQL_C_DATE
aaf0836c
GT
135 if (DataTypeSupported(pDb,SQL_C_DATE, &nativeDataTypeName))
136 {
74de91cc 137 nativeDataTypeName = wxT("SQL_C_DATE (") + nativeDataTypeName;
9b12bd99 138 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
139 wxLogMessage(nativeDataTypeName);
140 }
3fe813a9
GT
141#endif
142#ifdef SQL_C_DEFAULT
aaf0836c
GT
143 if (DataTypeSupported(pDb,SQL_C_DEFAULT, &nativeDataTypeName))
144 {
74de91cc 145 nativeDataTypeName = wxT("SQL_C_DEFAULT (") + nativeDataTypeName;
9b12bd99 146 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
147 wxLogMessage(nativeDataTypeName);
148 }
3fe813a9
GT
149#endif
150#ifdef SQL_C_DOUBLE
aaf0836c
GT
151 if (DataTypeSupported(pDb,SQL_C_DOUBLE, &nativeDataTypeName))
152 {
74de91cc 153 nativeDataTypeName = wxT("SQL_C_DOUBLE (") + nativeDataTypeName;
9b12bd99 154 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
155 wxLogMessage(nativeDataTypeName);
156 }
3fe813a9
GT
157#endif
158#ifdef SQL_C_FLOAT
aaf0836c
GT
159 if (DataTypeSupported(pDb,SQL_C_FLOAT, &nativeDataTypeName))
160 {
74de91cc 161 nativeDataTypeName = wxT("SQL_C_FLOAT (") + nativeDataTypeName;
9b12bd99 162 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
163 wxLogMessage(nativeDataTypeName);
164 }
3fe813a9
GT
165#endif
166#ifdef SQL_C_GUID
aaf0836c
GT
167 if (DataTypeSupported(pDb,SQL_C_GUID, &nativeDataTypeName))
168 {
74de91cc 169 nativeDataTypeName = wxT("SQL_C_GUID (") + nativeDataTypeName;
9b12bd99 170 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
171 wxLogMessage(nativeDataTypeName);
172 }
3fe813a9
GT
173#endif
174#ifdef SQL_C_INTERVAL_DAY
aaf0836c
GT
175 if (DataTypeSupported(pDb,SQL_C_INTERVAL_DAY, &nativeDataTypeName))
176 {
74de91cc 177 nativeDataTypeName = wxT("SQL_C_INTERVAL_DAY (") + nativeDataTypeName;
9b12bd99 178 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
179 wxLogMessage(nativeDataTypeName);
180 }
3fe813a9
GT
181#endif
182#ifdef SQL_C_INTERVAL_DAY_TO_HOUR
aaf0836c
GT
183 if (DataTypeSupported(pDb,SQL_C_INTERVAL_DAY_TO_HOUR, &nativeDataTypeName))
184 {
74de91cc 185 nativeDataTypeName = wxT("SQL_C_INTERVAL_DAY_TO_HOUR (") + nativeDataTypeName;
9b12bd99 186 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
187 wxLogMessage(nativeDataTypeName);
188 }
3fe813a9
GT
189#endif
190#ifdef SQL_C_INTERVAL_DAY_TO_MINUTE
aaf0836c
GT
191 if (DataTypeSupported(pDb,SQL_C_INTERVAL_DAY_TO_MINUTE, &nativeDataTypeName))
192 {
74de91cc 193 nativeDataTypeName = wxT("SQL_C_INTERVAL_DAY_TO_MINUTE (") + nativeDataTypeName;
9b12bd99 194 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
195 wxLogMessage(nativeDataTypeName);
196 }
3fe813a9
GT
197#endif
198#ifdef SQL_C_INTERVAL_DAY_TO_SECOND
aaf0836c
GT
199 if (DataTypeSupported(pDb,SQL_C_INTERVAL_DAY_TO_SECOND, &nativeDataTypeName))
200 {
74de91cc 201 nativeDataTypeName = wxT("SQL_C_INTERVAL_DAY_TO_SECOND (") + nativeDataTypeName;
9b12bd99 202 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
203 wxLogMessage(nativeDataTypeName);
204 }
3fe813a9
GT
205#endif
206#ifdef SQL_C_INTERVAL_HOUR
aaf0836c
GT
207 if (DataTypeSupported(pDb,SQL_C_INTERVAL_HOUR, &nativeDataTypeName))
208 {
74de91cc 209 nativeDataTypeName = wxT("SQL_C_INTERVAL_HOUR (") + nativeDataTypeName;
9b12bd99 210 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
211 wxLogMessage(nativeDataTypeName);
212 }
3fe813a9
GT
213#endif
214#ifdef SQL_C_INTERVAL_HOUR_TO_MINUTE
aaf0836c
GT
215 if (DataTypeSupported(pDb,SQL_C_INTERVAL_HOUR_TO_MINUTE, &nativeDataTypeName))
216 {
74de91cc 217 nativeDataTypeName = wxT("SQL_C_INTERVAL_HOUR_TO_MINUTE (") + nativeDataTypeName;
9b12bd99 218 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
219 wxLogMessage(nativeDataTypeName);
220 }
3fe813a9
GT
221#endif
222#ifdef SQL_C_INTERVAL_HOUR_TO_SECOND
aaf0836c
GT
223 if (DataTypeSupported(pDb,SQL_C_INTERVAL_HOUR_TO_SECOND, &nativeDataTypeName))
224 {
74de91cc 225 nativeDataTypeName = wxT("SQL_C_INTERVAL_HOUR_TO_SECOND (") + nativeDataTypeName;
9b12bd99 226 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
227 wxLogMessage(nativeDataTypeName);
228 }
3fe813a9
GT
229#endif
230#ifdef SQL_C_INTERVAL_MINUTE
aaf0836c
GT
231 if (DataTypeSupported(pDb,SQL_C_INTERVAL_MINUTE, &nativeDataTypeName))
232 {
74de91cc 233 nativeDataTypeName = wxT("SQL_C_INTERVAL_MINUTE (") + nativeDataTypeName;
9b12bd99 234 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
235 wxLogMessage(nativeDataTypeName);
236 }
3fe813a9
GT
237#endif
238#ifdef SQL_C_INTERVAL_MINUTE_TO_SECOND
aaf0836c
GT
239 if (DataTypeSupported(pDb,SQL_C_INTERVAL_MINUTE_TO_SECOND, &nativeDataTypeName))
240 {
74de91cc 241 nativeDataTypeName = wxT("SQL_C_INTERVAL_MINUTE_TO_SECOND (") + nativeDataTypeName;
9b12bd99 242 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
243 wxLogMessage(nativeDataTypeName);
244 }
3fe813a9
GT
245#endif
246#ifdef SQL_C_INTERVAL_MONTH
aaf0836c
GT
247 if (DataTypeSupported(pDb,SQL_C_INTERVAL_MONTH, &nativeDataTypeName))
248 {
74de91cc 249 nativeDataTypeName = wxT("SQL_C_INTERVAL_MONTH (") + nativeDataTypeName;
9b12bd99 250 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
251 wxLogMessage(nativeDataTypeName);
252 }
3fe813a9
GT
253#endif
254#ifdef SQL_C_INTERVAL_SECOND
aaf0836c
GT
255 if (DataTypeSupported(pDb,SQL_C_INTERVAL_SECOND, &nativeDataTypeName))
256 {
74de91cc 257 nativeDataTypeName = wxT("SQL_C_INTERVAL_SECOND (") + nativeDataTypeName;
9b12bd99 258 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
259 wxLogMessage(nativeDataTypeName);
260 }
3fe813a9
GT
261#endif
262#ifdef SQL_C_INTERVAL_YEAR
aaf0836c
GT
263 if (DataTypeSupported(pDb,SQL_C_INTERVAL_YEAR, &nativeDataTypeName))
264 {
74de91cc 265 nativeDataTypeName = wxT("SQL_C_INTERVAL_YEAR (") + nativeDataTypeName;
9b12bd99 266 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
267 wxLogMessage(nativeDataTypeName);
268 }
3fe813a9
GT
269#endif
270#ifdef SQL_C_INTERVAL_YEAR_TO_MONTH
aaf0836c
GT
271 if (DataTypeSupported(pDb,SQL_C_INTERVAL_YEAR_TO_MONTH, &nativeDataTypeName))
272 {
74de91cc 273 nativeDataTypeName = wxT("SQL_C_INTERVAL_YEAR_TO_MONTH (") + nativeDataTypeName;
9b12bd99 274 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
275 wxLogMessage(nativeDataTypeName);
276 }
3fe813a9
GT
277#endif
278#ifdef SQL_C_LONG
aaf0836c
GT
279 if (DataTypeSupported(pDb,SQL_C_LONG, &nativeDataTypeName))
280 {
74de91cc 281 nativeDataTypeName = wxT("SQL_C_LONG (") + nativeDataTypeName;
9b12bd99 282 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
283 wxLogMessage(nativeDataTypeName);
284 }
3fe813a9
GT
285#endif
286#ifdef SQL_C_NUMERIC
aaf0836c
GT
287 if (DataTypeSupported(pDb,SQL_C_NUMERIC, &nativeDataTypeName))
288 {
74de91cc 289 nativeDataTypeName = wxT("SQL_C_NUMERIC (") + nativeDataTypeName;
9b12bd99 290 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
291 wxLogMessage(nativeDataTypeName);
292 }
3fe813a9
GT
293#endif
294#ifdef SQL_C_SBIGINT
aaf0836c
GT
295 if (DataTypeSupported(pDb,SQL_C_SBIGINT, &nativeDataTypeName))
296 {
74de91cc 297 nativeDataTypeName = wxT("SQL_C_SBIGINT (") + nativeDataTypeName;
9b12bd99 298 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
299 wxLogMessage(nativeDataTypeName);
300 }
3fe813a9
GT
301#endif
302#ifdef SQL_C_SHORT
aaf0836c
GT
303 if (DataTypeSupported(pDb,SQL_C_SHORT, &nativeDataTypeName))
304 {
74de91cc 305 nativeDataTypeName = wxT("SQL_C_SHORT (") + nativeDataTypeName;
9b12bd99 306 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
307 wxLogMessage(nativeDataTypeName);
308 }
3fe813a9
GT
309#endif
310#ifdef SQL_C_SLONG
aaf0836c
GT
311 if (DataTypeSupported(pDb,SQL_C_SLONG, &nativeDataTypeName))
312 {
74de91cc 313 nativeDataTypeName = wxT("SQL_C_SLONG (") + nativeDataTypeName;
9b12bd99 314 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
315 wxLogMessage(nativeDataTypeName);
316 }
3fe813a9
GT
317#endif
318#ifdef SQL_C_SSHORT
aaf0836c
GT
319 if (DataTypeSupported(pDb,SQL_C_SSHORT, &nativeDataTypeName))
320 {
74de91cc 321 nativeDataTypeName = wxT("SQL_C_SSHORT (") + nativeDataTypeName;
9b12bd99 322 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
323 wxLogMessage(nativeDataTypeName);
324 }
3fe813a9
GT
325#endif
326#ifdef SQL_C_STINYINT
aaf0836c
GT
327 if (DataTypeSupported(pDb,SQL_C_STINYINT, &nativeDataTypeName))
328 {
74de91cc 329 nativeDataTypeName = wxT("SQL_C_STINYINT (") + nativeDataTypeName;
9b12bd99 330 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
331 wxLogMessage(nativeDataTypeName);
332 }
3fe813a9
GT
333#endif
334#ifdef SQL_C_TIME
aaf0836c
GT
335 if (DataTypeSupported(pDb,SQL_C_TIME, &nativeDataTypeName))
336 {
74de91cc 337 nativeDataTypeName = wxT("SQL_C_TIME (") + nativeDataTypeName;
9b12bd99 338 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
339 wxLogMessage(nativeDataTypeName);
340 }
3fe813a9
GT
341#endif
342#ifdef SQL_C_TIMESTAMP
aaf0836c
GT
343 if (DataTypeSupported(pDb,SQL_C_TIMESTAMP, &nativeDataTypeName))
344 {
74de91cc 345 nativeDataTypeName = wxT("SQL_C_TIMESTAMP (") + nativeDataTypeName;
9b12bd99 346 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
347 wxLogMessage(nativeDataTypeName);
348 }
3fe813a9
GT
349#endif
350#ifdef SQL_C_TINYINT
aaf0836c
GT
351 if (DataTypeSupported(pDb,SQL_C_TINYINT, &nativeDataTypeName))
352 {
74de91cc 353 nativeDataTypeName = wxT("SQL_C_TINYINT (") + nativeDataTypeName;
9b12bd99 354 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
355 wxLogMessage(nativeDataTypeName);
356 }
3fe813a9
GT
357#endif
358#ifdef SQL_C_TYPE_DATE
aaf0836c
GT
359 if (DataTypeSupported(pDb,SQL_C_TYPE_DATE, &nativeDataTypeName))
360 {
74de91cc 361 nativeDataTypeName = wxT("SQL_C_TYPE_DATE (") + nativeDataTypeName;
9b12bd99 362 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
363 wxLogMessage(nativeDataTypeName);
364 }
3fe813a9
GT
365#endif
366#ifdef SQL_C_TYPE_TIME
aaf0836c
GT
367 if (DataTypeSupported(pDb,SQL_C_TYPE_TIME, &nativeDataTypeName))
368 {
74de91cc 369 nativeDataTypeName = wxT("SQL_C_TYPE_TIME (") + nativeDataTypeName;
9b12bd99 370 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
371 wxLogMessage(nativeDataTypeName);
372 }
3fe813a9
GT
373#endif
374#ifdef SQL_C_TYPE_TIMESTAMP
aaf0836c
GT
375 if (DataTypeSupported(pDb,SQL_C_TYPE_TIMESTAMP, &nativeDataTypeName))
376 {
74de91cc 377 nativeDataTypeName = wxT("SQL_C_TYPE_TIMESTAMP (") + nativeDataTypeName;
9b12bd99 378 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
379 wxLogMessage(nativeDataTypeName);
380 }
3fe813a9
GT
381#endif
382#ifdef SQL_C_UBIGINT
aaf0836c
GT
383 if (DataTypeSupported(pDb,SQL_C_UBIGINT, &nativeDataTypeName))
384 {
74de91cc 385 nativeDataTypeName = wxT("SQL_C_UBIGINT (") + nativeDataTypeName;
9b12bd99 386 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
387 wxLogMessage(nativeDataTypeName);
388 }
3fe813a9
GT
389#endif
390#ifdef SQL_C_ULONG
aaf0836c
GT
391 if (DataTypeSupported(pDb,SQL_C_ULONG, &nativeDataTypeName))
392 {
74de91cc 393 nativeDataTypeName = wxT("SQL_C_ULONG (") + nativeDataTypeName;
9b12bd99 394 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
395 wxLogMessage(nativeDataTypeName);
396 }
3fe813a9
GT
397#endif
398#ifdef SQL_C_USHORT
aaf0836c
GT
399 if (DataTypeSupported(pDb,SQL_C_USHORT, &nativeDataTypeName))
400 {
74de91cc 401 nativeDataTypeName = wxT("SQL_C_USHORT (") + nativeDataTypeName;
9b12bd99 402 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
403 wxLogMessage(nativeDataTypeName);
404 }
3fe813a9
GT
405#endif
406#ifdef SQL_C_UTINYINT
aaf0836c
GT
407 if (DataTypeSupported(pDb,SQL_C_UTINYINT, &nativeDataTypeName))
408 {
74de91cc 409 nativeDataTypeName = wxT("SQL_C_UTINYINT (") + nativeDataTypeName;
9b12bd99 410 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
411 wxLogMessage(nativeDataTypeName);
412 }
3fe813a9
GT
413#endif
414#ifdef SQL_C_VARBOOKMARK
aaf0836c
GT
415 if (DataTypeSupported(pDb,SQL_C_VARBOOKMARK, &nativeDataTypeName))
416 {
74de91cc 417 nativeDataTypeName = wxT("SQL_C_VARBOOKMARK (") + nativeDataTypeName;
9b12bd99 418 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
419 wxLogMessage(nativeDataTypeName);
420 }
3fe813a9 421#endif
da1e87c4
GT
422#ifdef SQL_C_WXCHAR
423 if (DataTypeSupported(pDb,SQL_C_WXCHAR, &nativeDataTypeName))
424 {
425 nativeDataTypeName = wxT("SQL_C_WXCHAR (") + nativeDataTypeName;
426 nativeDataTypeName += wxT(")\n");
427 wxLogMessage(nativeDataTypeName);
428 }
429#endif
3fe813a9
GT
430
431// Extended SQL types
432#ifdef SQL_DATE
aaf0836c
GT
433 if (DataTypeSupported(pDb,SQL_DATE, &nativeDataTypeName))
434 {
74de91cc 435 nativeDataTypeName = wxT("SQL_DATE (") + nativeDataTypeName;
9b12bd99 436 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
437 wxLogMessage(nativeDataTypeName);
438 }
3fe813a9
GT
439#endif
440#ifdef SQL_INTERVAL
aaf0836c
GT
441 if (DataTypeSupported(pDb,SQL_INTERVAL, &nativeDataTypeName))
442 {
74de91cc 443 nativeDataTypeName = wxT("SQL_INTERVAL (") + nativeDataTypeName;
9b12bd99 444 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
445 wxLogMessage(nativeDataTypeName);
446 }
3fe813a9
GT
447#endif
448#ifdef SQL_TIME
aaf0836c
GT
449 if (DataTypeSupported(pDb,SQL_TIME, &nativeDataTypeName))
450 {
74de91cc 451 nativeDataTypeName = wxT("SQL_TIME (") + nativeDataTypeName;
9b12bd99 452 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
453 wxLogMessage(nativeDataTypeName);
454 }
3fe813a9
GT
455#endif
456#ifdef SQL_TIMESTAMP
aaf0836c
GT
457 if (DataTypeSupported(pDb,SQL_TIMESTAMP, &nativeDataTypeName))
458 {
74de91cc 459 nativeDataTypeName = wxT("SQL_TIMESTAMP (") + nativeDataTypeName;
9b12bd99 460 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
461 wxLogMessage(nativeDataTypeName);
462 }
3fe813a9
GT
463#endif
464#ifdef SQL_LONGVARCHAR
aaf0836c
GT
465 if (DataTypeSupported(pDb,SQL_LONGVARCHAR, &nativeDataTypeName))
466 {
74de91cc 467 nativeDataTypeName = wxT("SQL_LONGVARCHAR (") + nativeDataTypeName;
9b12bd99 468 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
469 wxLogMessage(nativeDataTypeName);
470 }
3fe813a9
GT
471#endif
472#ifdef SQL_BINARY
aaf0836c
GT
473 if (DataTypeSupported(pDb,SQL_BINARY, &nativeDataTypeName))
474 {
74de91cc 475 nativeDataTypeName = wxT("SQL_BINARY (") + nativeDataTypeName;
9b12bd99 476 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
477 wxLogMessage(nativeDataTypeName);
478 }
3fe813a9
GT
479#endif
480#ifdef SQL_VARBINARY
aaf0836c
GT
481 if (DataTypeSupported(pDb,SQL_VARBINARY, &nativeDataTypeName))
482 {
74de91cc 483 nativeDataTypeName = wxT("SQL_VARBINARY (") + nativeDataTypeName;
9b12bd99 484 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
485 wxLogMessage(nativeDataTypeName);
486 }
3fe813a9
GT
487#endif
488#ifdef SQL_LONGVARBINARY
aaf0836c
GT
489 if (DataTypeSupported(pDb,SQL_LONGVARBINARY, &nativeDataTypeName))
490 {
74de91cc 491 nativeDataTypeName = wxT("SQL_LOGVARBINARY (") + nativeDataTypeName;
9b12bd99 492 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
493 wxLogMessage(nativeDataTypeName);
494 }
3fe813a9
GT
495#endif
496#ifdef SQL_BIGINT
aaf0836c
GT
497 if (DataTypeSupported(pDb,SQL_BIGINT, &nativeDataTypeName))
498 {
74de91cc 499 nativeDataTypeName = wxT("SQL_BIGINT (") + nativeDataTypeName;
9b12bd99 500 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
501 wxLogMessage(nativeDataTypeName);
502 }
3fe813a9
GT
503#endif
504#ifdef SQL_TINYINT
aaf0836c
GT
505 if (DataTypeSupported(pDb,SQL_TINYINT, &nativeDataTypeName))
506 {
74de91cc 507 nativeDataTypeName = wxT("SQL_TINYINT (") + nativeDataTypeName;
9b12bd99 508 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
509 wxLogMessage(nativeDataTypeName);
510 }
3fe813a9
GT
511#endif
512#ifdef SQL_BIT
aaf0836c
GT
513 if (DataTypeSupported(pDb,SQL_BIT, &nativeDataTypeName))
514 {
74de91cc 515 nativeDataTypeName = wxT("SQL_BIT (") + nativeDataTypeName;
9b12bd99 516 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
517 wxLogMessage(nativeDataTypeName);
518 }
3fe813a9
GT
519#endif
520#ifdef SQL_GUID
aaf0836c
GT
521 if (DataTypeSupported(pDb,SQL_GUID, &nativeDataTypeName))
522 {
74de91cc 523 nativeDataTypeName = wxT("SQL_GUID (") + nativeDataTypeName;
9b12bd99 524 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
525 wxLogMessage(nativeDataTypeName);
526 }
3fe813a9
GT
527#endif
528
529#ifdef SQL_CHAR
aaf0836c
GT
530 if (DataTypeSupported(pDb,SQL_CHAR, &nativeDataTypeName))
531 {
74de91cc 532 nativeDataTypeName = wxT("SQL_CHAR (") + nativeDataTypeName;
9b12bd99 533 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
534 wxLogMessage(nativeDataTypeName);
535 }
3fe813a9
GT
536#endif
537#ifdef SQL_INTEGER
aaf0836c
GT
538 if (DataTypeSupported(pDb,SQL_INTEGER, &nativeDataTypeName))
539 {
74de91cc 540 nativeDataTypeName = wxT("SQL_INTEGER (") + nativeDataTypeName;
9b12bd99 541 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
542 wxLogMessage(nativeDataTypeName);
543 }
3fe813a9
GT
544#endif
545#ifdef SQL_SMALLINT
aaf0836c
GT
546 if (DataTypeSupported(pDb,SQL_SMALLINT, &nativeDataTypeName))
547 {
74de91cc 548 nativeDataTypeName = wxT("SQL_SAMLLINT (") + nativeDataTypeName;
9b12bd99 549 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
550 wxLogMessage(nativeDataTypeName);
551 }
3fe813a9
GT
552#endif
553#ifdef SQL_REAL
aaf0836c
GT
554 if (DataTypeSupported(pDb,SQL_REAL, &nativeDataTypeName))
555 {
74de91cc 556 nativeDataTypeName = wxT("SQL_REAL (") + nativeDataTypeName;
9b12bd99 557 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
558 wxLogMessage(nativeDataTypeName);
559 }
3fe813a9
GT
560#endif
561#ifdef SQL_DOUBLE
aaf0836c
GT
562 if (DataTypeSupported(pDb,SQL_DOUBLE, &nativeDataTypeName))
563 {
74de91cc 564 nativeDataTypeName = wxT("SQL_DOUBLE (") + nativeDataTypeName;
9b12bd99 565 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
566 wxLogMessage(nativeDataTypeName);
567 }
3fe813a9
GT
568#endif
569#ifdef SQL_NUMERIC
aaf0836c
GT
570 if (DataTypeSupported(pDb,SQL_NUMERIC, &nativeDataTypeName))
571 {
74de91cc 572 nativeDataTypeName = wxT("SQL_NUMERIC (") + nativeDataTypeName;
9b12bd99 573 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
574 wxLogMessage(nativeDataTypeName);
575 }
3fe813a9
GT
576#endif
577#ifdef SQL_DATE
aaf0836c
GT
578 if (DataTypeSupported(pDb,SQL_DATE, &nativeDataTypeName))
579 {
74de91cc 580 nativeDataTypeName = wxT("SQL_DATE (") + nativeDataTypeName;
9b12bd99 581 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
582 wxLogMessage(nativeDataTypeName);
583 }
3fe813a9
GT
584#endif
585#ifdef SQL_TIME
aaf0836c
GT
586 if (DataTypeSupported(pDb,SQL_TIME, &nativeDataTypeName))
587 {
74de91cc 588 nativeDataTypeName = wxT("SQL_TIME (") + nativeDataTypeName;
9b12bd99 589 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
590 wxLogMessage(nativeDataTypeName);
591 }
3fe813a9
GT
592#endif
593#ifdef SQL_TIMESTAMP
aaf0836c
GT
594 if (DataTypeSupported(pDb,SQL_TIMESTAMP, &nativeDataTypeName))
595 {
74de91cc 596 nativeDataTypeName = wxT("SQL_TIMESTAMP (") + nativeDataTypeName;
9b12bd99 597 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
598 wxLogMessage(nativeDataTypeName);
599 }
3fe813a9
GT
600#endif
601#ifdef SQL_VARCHAR
aaf0836c
GT
602 if (DataTypeSupported(pDb,SQL_VARCHAR, &nativeDataTypeName))
603 {
74de91cc 604 nativeDataTypeName = wxT("SQL_VARCHAR (") + nativeDataTypeName;
9b12bd99 605 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
606 wxLogMessage(nativeDataTypeName);
607 }
3fe813a9
GT
608#endif
609
3fe813a9
GT
610// UNICODE
611#ifdef SQL_C_TCHAR
aaf0836c
GT
612 if (DataTypeSupported(pDb,SQL_C_TCHAR, &nativeDataTypeName))
613 {
74de91cc 614 nativeDataTypeName = wxT("SQL_C_TCHAR (") + nativeDataTypeName;
9b12bd99 615 nativeDataTypeName += wxT(")\n");
aaf0836c
GT
616 wxLogMessage(nativeDataTypeName);
617 }
3fe813a9 618#endif
3f030b48 619
9b12bd99 620 wxLogMessage(wxT("Done\n"));
3fe813a9
GT
621} // CheckSupportForAllDataTypes()
622
623
1fc5dd6f 624bool DatabaseDemoApp::OnInit()
108106cf 625{
ea24eeb2
GT
626 DbConnectInf = NULL;
627 Contact = NULL;
049977d0 628
e70e8f4c 629 // Create the main frame window
da1e87c4 630 DemoFrame = new DatabaseDemoFrame(NULL, wxT("wxWidgets Database Demo"), wxPoint(50, 50), wxSize(537, 530));
e70e8f4c
GT
631
632 // Give it an icon
633 DemoFrame->SetIcon(wxICON(db));
634
635 // Make a menubar
636 wxMenu *file_menu = new wxMenu;
74de91cc 637 file_menu->Append(FILE_CREATE_ID, wxT("&Create CONTACT table"));
94613352
GT
638 file_menu->Append(FILE_RECREATE_TABLE, wxT("&Recreate CONTACT table"));
639 file_menu->Append(FILE_RECREATE_INDEXES, wxT("&Recreate CONTACT indexes"));
9b12bd99 640#if wxUSE_GRID
f21b2fd8
GT
641 file_menu->Append(FILE_DBGRID_TABLE, wxT("&Open DB Grid example"));
642#endif
94613352 643 file_menu->Append(FILE_EXIT, wxT("E&xit"));
e70e8f4c
GT
644
645 wxMenu *edit_menu = new wxMenu;
94613352 646 edit_menu->Append(EDIT_PARAMETERS, wxT("&Parameters..."));
e70e8f4c 647
ea24eeb2
GT
648 wxMenu *help_menu = new wxMenu;
649 help_menu->Append(HELP_ABOUT, wxT("&About"));
e70e8f4c
GT
650
651 wxMenuBar *menu_bar = new wxMenuBar;
94613352
GT
652 menu_bar->Append(file_menu, wxT("&File"));
653 menu_bar->Append(edit_menu, wxT("&Edit"));
ea24eeb2 654 menu_bar->Append(help_menu, wxT("&Help"));
e70e8f4c
GT
655 DemoFrame->SetMenuBar(menu_bar);
656
e70e8f4c
GT
657 params.ODBCSource[0] = 0;
658 params.UserName[0] = 0;
659 params.Password[0] = 0;
660 params.DirPath[0] = 0;
661
da1e87c4
GT
662#ifdef wxODBC_BLOB_SUPPORT
663 wxInitAllImageHandlers();
664 wxImage::InitStandardHandlers();
665 wxBitmap::InitStandardHandlers();
666#endif
667
3ca6a5f0 668 // Show the frame
6d841efd 669 DemoFrame->Show(true);
3ca6a5f0 670
049977d0
GT
671 // Passing NULL for the SQL environment handle causes
672 // the wxDbConnectInf constructor to obtain a handle
673 // for you.
674 //
675 // WARNING: Be certain that you do not free this handle
676 // directly with SQLFreeEnv(). Use either the
677 // method ::FreeHenv() or delete the DbConnectInf.
925e9792 678 DbConnectInf = new wxDbConnectInf(NULL, params.ODBCSource, params.UserName,
049977d0
GT
679 params.Password, params.DirPath);
680
681 if (!DbConnectInf || !DbConnectInf->GetHenv())
682 {
683 wxMessageBox(wxT("Unable to define data source connection info."), wxT("DB CONNECTION ERROR..."),wxOK | wxICON_EXCLAMATION);
ea24eeb2 684 wxDELETE(DbConnectInf);
049977d0
GT
685 }
686
3fe813a9
GT
687 if (!ReadParamFile(params))
688 DemoFrame->BuildParameterDialog(NULL);
689
690 if (!wxStrlen(params.ODBCSource))
691 {
ea24eeb2 692 wxDELETE(DbConnectInf);
6d841efd 693 return(false);
3fe813a9
GT
694 }
695
696 DbConnectInf->SetDsn(params.ODBCSource);
697 DbConnectInf->SetUserID(params.UserName);
698 DbConnectInf->SetPassword(params.Password);
699 DbConnectInf->SetDefaultDir(params.DirPath);
700
049977d0
GT
701 READONLY_DB = wxDbGetConnection(DbConnectInf);
702 if (READONLY_DB == 0)
703 {
704 wxMessageBox(wxT("Unable to connect to the data source.\n\nCheck the name of your data source to verify it has been correctly entered/spelled.\n\nWith some databases, the user name and password must\nbe created with full rights to the CONTACT table prior to making a connection\n(using tools provided by the database manufacturer)"), wxT("DB CONNECTION ERROR..."),wxOK | wxICON_EXCLAMATION);
705 DemoFrame->BuildParameterDialog(NULL);
ea24eeb2 706 wxDELETE(DbConnectInf);
049977d0 707 wxMessageBox(wxT("Now exiting program.\n\nRestart program to try any new settings."),wxT("Notice..."),wxOK | wxICON_INFORMATION);
6d841efd 708 return(false);
049977d0
GT
709 }
710
711 DemoFrame->BuildEditorDialog();
712
713 // Show the frame
714 DemoFrame->Refresh();
715
6d841efd 716 return true;
049977d0
GT
717} // DatabaseDemoApp::OnInit()
718
719
f369dd4f
GT
720/*
721* Remove CR or CR/LF from a character string.
722*/
74de91cc 723wxChar* wxRemoveLineTerminator(wxChar* aString)
f369dd4f 724{
74de91cc
JS
725 int len = wxStrlen(aString);
726 while (len > 0 && (aString[len-1] == wxT('\r') || aString[len-1] == wxT('\n'))) {
727 aString[len-1] = wxT('\0');
f369dd4f
GT
728 len--;
729 }
730 return aString;
731}
732
733
049977d0
GT
734bool DatabaseDemoApp::ReadParamFile(Cparameters &params)
735{
e70e8f4c 736 FILE *paramFile;
74de91cc 737 if ((paramFile = wxFopen(PARAM_FILENAME, wxT("r"))) == NULL)
e70e8f4c
GT
738 {
739 wxString tStr;
049977d0 740 tStr.Printf(wxT("Unable to open the parameter file '%s' for reading.\n\nYou must specify the data source, user name, and\npassword that will be used and save those settings."),PARAM_FILENAME);
94613352 741 wxMessageBox(tStr,wxT("File I/O Error..."),wxOK | wxICON_EXCLAMATION);
e70e8f4c 742
6d841efd 743 return false;
e70e8f4c
GT
744 }
745
94613352 746 wxChar buffer[1000+1];
74de91cc 747 wxFgets(buffer, sizeof(params.ODBCSource), paramFile);
f369dd4f 748 wxRemoveLineTerminator(buffer);
f6bcfd97 749 wxStrcpy(params.ODBCSource,buffer);
e70e8f4c 750
74de91cc 751 wxFgets(buffer, sizeof(params.UserName), paramFile);
f369dd4f 752 wxRemoveLineTerminator(buffer);
f6bcfd97 753 wxStrcpy(params.UserName,buffer);
e70e8f4c 754
74de91cc 755 wxFgets(buffer, sizeof(params.Password), paramFile);
f369dd4f 756 wxRemoveLineTerminator(buffer);
f6bcfd97 757 wxStrcpy(params.Password,buffer);
e70e8f4c 758
74de91cc 759 wxFgets(buffer, sizeof(params.DirPath), paramFile);
f369dd4f 760 wxRemoveLineTerminator(buffer);
f6bcfd97 761 wxStrcpy(params.DirPath,buffer);
e70e8f4c
GT
762
763 fclose(paramFile);
764
6d841efd 765 return true;
049977d0 766} // DatabaseDemoApp::ReadParamFile()
e70e8f4c 767
049977d0 768
74de91cc 769bool DatabaseDemoApp::WriteParamFile(Cparameters &WXUNUSED(params))
049977d0
GT
770{
771 FILE *paramFile;
74de91cc 772 if ((paramFile = wxFopen(PARAM_FILENAME, wxT("wt"))) == NULL)
e70e8f4c 773 {
049977d0
GT
774 wxString tStr;
775 tStr.Printf(wxT("Unable to write/overwrite '%s'."),PARAM_FILENAME);
776 wxMessageBox(tStr,wxT("File I/O Error..."),wxOK | wxICON_EXCLAMATION);
6d841efd 777 return false;
e70e8f4c
GT
778 }
779
74de91cc
JS
780 wxFputs(wxGetApp().params.ODBCSource, paramFile);
781 wxFputc(wxT('\n'), paramFile);
782 wxFputs(wxGetApp().params.UserName, paramFile);
783 wxFputc(wxT('\n'), paramFile);
784 wxFputs(wxGetApp().params.Password, paramFile);
785 wxFputc(wxT('\n'), paramFile);
786 wxFputs(wxGetApp().params.DirPath, paramFile);
787 wxFputc(wxT('\n'), paramFile);
049977d0 788 fclose(paramFile);
108106cf 789
6d841efd 790 return true;
049977d0
GT
791} // DatabaseDemoApp::WriteParamFile()
792
793
794void DatabaseDemoApp::CreateDataTable(bool recreate)
795{
6d841efd 796 bool Ok = true;
049977d0
GT
797 if (recreate)
798 Ok = (wxMessageBox(wxT("Any data currently residing in the table will be erased.\n\nAre you sure?"),wxT("Confirm"),wxYES_NO|wxICON_QUESTION) == wxYES);
799
800 if (!Ok)
801 return;
802
803 wxBeginBusyCursor();
804
6d841efd 805 bool success = true;
049977d0 806
ea24eeb2 807 Contact->GetDb()->RollbackTrans(); // Make sure the current cursor is in a known/stable state
049977d0
GT
808
809 if (!Contact->CreateTable(recreate))
810 {
811 wxEndBusyCursor();
812 wxString tStr;
f21b2fd8 813 tStr = wxT("Error creating CONTACTS table.\nTable was not created.\n\n");
74de91cc 814 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8
GT
815 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
816
6d841efd 817 success = false;
049977d0
GT
818 }
819 else
820 {
69a2b59d 821 if (!Contact->CreateIndexes(recreate))
049977d0
GT
822 {
823 wxEndBusyCursor();
824 wxString tStr;
f21b2fd8 825 tStr = wxT("Error creating CONTACTS indexes.\nIndexes will be unavailable.\n\n");
74de91cc 826 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8
GT
827 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
828
6d841efd 829 success = false;
049977d0
GT
830 }
831 }
832 while (wxIsBusy())
833 wxEndBusyCursor();
834
049977d0
GT
835 if (success)
836 wxMessageBox(wxT("Table and index(es) were successfully created."),wxT("Notice..."),wxOK | wxICON_INFORMATION);
837} // DatabaseDemoApp::CreateDataTable()
108106cf 838
3ca6a5f0 839
1fc5dd6f 840BEGIN_EVENT_TABLE(DatabaseDemoFrame, wxFrame)
74de91cc 841 EVT_MENU(FILE_CREATE_ID, DatabaseDemoFrame::OnCreate)
3ca6a5f0
BP
842 EVT_MENU(FILE_RECREATE_TABLE, DatabaseDemoFrame::OnRecreateTable)
843 EVT_MENU(FILE_RECREATE_INDEXES, DatabaseDemoFrame::OnRecreateIndexes)
9b12bd99 844#if wxUSE_GRID
f21b2fd8
GT
845 EVT_MENU(FILE_DBGRID_TABLE, DatabaseDemoFrame::OnDbGridTable)
846#endif
1fc5dd6f
JS
847 EVT_MENU(FILE_EXIT, DatabaseDemoFrame::OnExit)
848 EVT_MENU(EDIT_PARAMETERS, DatabaseDemoFrame::OnEditParameters)
ea24eeb2 849 EVT_MENU(HELP_ABOUT, DatabaseDemoFrame::OnAbout)
1fc5dd6f
JS
850 EVT_CLOSE(DatabaseDemoFrame::OnCloseWindow)
851END_EVENT_TABLE()
108106cf 852
3ca6a5f0 853
108106cf 854// DatabaseDemoFrame constructor
1fc5dd6f 855DatabaseDemoFrame::DatabaseDemoFrame(wxFrame *frame, const wxString& title,
3ca6a5f0 856 const wxPoint& pos, const wxSize& size):
6d841efd 857 wxFrame(frame, wxID_ANY, title, pos, size)
108106cf 858{
3ca6a5f0
BP
859 // Put any code in necessary for initializing the main frame here
860 pEditorDlg = NULL;
861 pParamDlg = NULL;
3f030b48 862
f07941fc 863#if wxUSE_LOG
3f030b48 864 delete wxLog::SetActiveTarget(new wxLogStderr);
f07941fc 865#endif // wxUSE_LOG
3f030b48 866
3ca6a5f0
BP
867} // DatabaseDemoFrame constructor
868
3f030b48
GT
869DatabaseDemoFrame::~DatabaseDemoFrame()
870{
f07941fc 871#if wxUSE_LOG
3f030b48 872 delete wxLog::SetActiveTarget(NULL);
f07941fc 873#endif // wxUSE_LOG
3f030b48
GT
874} // DatabaseDemoFrame destructor
875
108106cf 876
74de91cc 877void DatabaseDemoFrame::OnCreate(wxCommandEvent& WXUNUSED(event))
1fc5dd6f 878{
6d841efd 879 wxGetApp().CreateDataTable(false);
3ca6a5f0
BP
880} // DatabaseDemoFrame::OnCreate()
881
882
74de91cc 883void DatabaseDemoFrame::OnRecreateTable(wxCommandEvent& WXUNUSED(event))
3ca6a5f0 884{
6d841efd 885 wxGetApp().CreateDataTable(true);
3ca6a5f0
BP
886} // DatabaseDemoFrame::OnRecreate()
887
888
74de91cc 889void DatabaseDemoFrame::OnRecreateIndexes(wxCommandEvent& WXUNUSED(event))
3ca6a5f0 890{
69a2b59d
GT
891 wxGetApp().Contact->GetDb()->RollbackTrans(); // Make sure the current cursor is in a known/stable state
892
6d841efd 893 if (!wxGetApp().Contact->CreateIndexes(true))
3ca6a5f0 894 {
ea24eeb2
GT
895 while (wxIsBusy())
896 wxEndBusyCursor();
897 wxString tStr;
f21b2fd8 898 tStr = wxT("Error creating CONTACTS indexes.\nNew indexes will be unavailable.\n\n");
74de91cc 899 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8
GT
900 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
901
3ca6a5f0 902 }
69a2b59d 903 else
ea24eeb2 904 wxMessageBox(wxT("Index(es) were successfully recreated."),wxT("Notice..."),wxOK | wxICON_INFORMATION);
3ca6a5f0 905
3ca6a5f0 906} // DatabaseDemoFrame::OnRecreateIndexes()
108106cf 907
ea24eeb2 908
9b12bd99 909#if wxUSE_GRID
74de91cc 910void DatabaseDemoFrame::OnDbGridTable(wxCommandEvent& WXUNUSED(event))
f21b2fd8
GT
911{
912 DbGridFrame *frame = new DbGridFrame(this);
913 if (frame->Initialize())
914 {
915 frame->Show();
916 }
917}
918#endif
919
74de91cc 920void DatabaseDemoFrame::OnExit(wxCommandEvent& WXUNUSED(event))
108106cf 921{
3f755e2d 922 Close();
3ca6a5f0
BP
923} // DatabaseDemoFrame::OnExit()
924
108106cf 925
74de91cc 926void DatabaseDemoFrame::OnEditParameters(wxCommandEvent& WXUNUSED(event))
1fc5dd6f 927{
e70e8f4c
GT
928 if ((pEditorDlg->mode != mCreate) && (pEditorDlg->mode != mEdit))
929 BuildParameterDialog(this);
930 else
94613352 931 wxMessageBox(wxT("Cannot change database parameters while creating or editing a record"),wxT("Notice..."),wxOK | wxICON_INFORMATION);
3ca6a5f0
BP
932} // DatabaseDemoFrame::OnEditParameters()
933
1fc5dd6f 934
74de91cc 935void DatabaseDemoFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
1fc5dd6f 936{
be5a51fb 937 wxMessageBox(wxT("wxWidgets sample program for database classes\n\nContributed on 27 July 1998"),wxT("About..."),wxOK | wxICON_INFORMATION);
3ca6a5f0
BP
938} // DatabaseDemoFrame::OnAbout()
939
108106cf 940
049977d0
GT
941// Put any additional checking necessary to make certain it is alright
942// to close the program here that is not done elsewhere
1fc5dd6f 943void DatabaseDemoFrame::OnCloseWindow(wxCloseEvent& event)
108106cf 944{
3f755e2d 945 // Clean up time
3ca6a5f0 946 if (pEditorDlg && pEditorDlg->Close())
3f755e2d
GT
947 pEditorDlg = NULL;
948 else
f6bcfd97 949 {
3ca6a5f0
BP
950 if (pEditorDlg)
951 {
952 event.Veto();
953 return;
954 }
f6bcfd97
BP
955 }
956
ea24eeb2
GT
957 wxDELETE(wxGetApp().Contact);
958
3ca6a5f0
BP
959 // This function will close all the connections to the database that have been
960 // previously cached.
961 wxDbCloseConnections();
962
049977d0
GT
963 // Deletion of the wxDbConnectInf instance must be the LAST thing done that
964 // has anything to do with the database. Deleting this before disconnecting,
965 // freeing/closing connections, etc will result in a crash!
ea24eeb2 966 wxDELETE(wxGetApp().DbConnectInf);
3f755e2d 967
1fc5dd6f 968 this->Destroy();
3f755e2d 969
e3065973 970} // DatabaseDemoFrame::OnCloseWindow()
108106cf
JS
971
972
108106cf
JS
973void DatabaseDemoFrame::BuildEditorDialog()
974{
3ca6a5f0 975 pEditorDlg = NULL;
e70e8f4c 976 pEditorDlg = new CeditorDlg(this);
3ca6a5f0
BP
977 if (pEditorDlg)
978 {
979 pEditorDlg->Initialize();
980 if (!pEditorDlg->initialized)
981 {
982 pEditorDlg->Close();
973f2539 983 pEditorDlg = NULL;
94613352 984 wxMessageBox(wxT("Unable to initialize the editor dialog for some reason"),wxT("Error..."),wxOK | wxICON_EXCLAMATION);
049977d0 985 Close();
3ca6a5f0 986 }
925e9792 987 }
3ca6a5f0
BP
988 else
989 {
94613352 990 wxMessageBox(wxT("Unable to create the editor dialog for some reason"),wxT("Error..."),wxOK | wxICON_EXCLAMATION);
049977d0 991 Close();
3ca6a5f0 992 }
108106cf
JS
993} // DatabaseDemoFrame::BuildEditorDialog()
994
995
996void DatabaseDemoFrame::BuildParameterDialog(wxWindow *parent)
997{
e70e8f4c 998 pParamDlg = new CparameterDlg(parent);
108106cf 999
e70e8f4c 1000 if (!pParamDlg)
94613352 1001 wxMessageBox(wxT("Unable to create the parameter dialog for some reason"),wxT("Error..."),wxOK | wxICON_EXCLAMATION);
108106cf
JS
1002} // DatabaseDemoFrame::BuildParameterDialog()
1003
1004
1005/*
f6bcfd97 1006 * Constructor note: If no wxDb object is passed in, a new connection to the database
108106cf
JS
1007 * is created for this instance of Ccontact. This can be a slow process depending
1008 * on the database engine being used, and some database engines have a limit on the
925e9792
WS
1009 * number of connections (either hard limits, or license restricted) so care should
1010 * be used to use as few connections as is necessary.
e70e8f4c 1011 *
925e9792
WS
1012 * IMPORTANT: Objects which share a wxDb pointer are ALL acted upon whenever a member
1013 * function of pDb is called (i.e. CommitTrans() or RollbackTrans(), so if modifying
108106cf
JS
1014 * or creating a table objects which use the same pDb, know that all the objects
1015 * will be committed or rolled back when any of the objects has this function call made.
1016 */
049977d0 1017Ccontact::Ccontact (wxDb *pwxDb) : wxDbTable(pwxDb ? pwxDb : wxDbGetConnection(wxGetApp().DbConnectInf),
c3677ad3 1018 CONTACT_TABLE_NAME, CONTACT_NO_COLS, (const wxString &)wxEmptyString,
049977d0 1019 !wxDB_QUERY_ONLY, wxGetApp().DbConnectInf->GetDefaultDir())
108106cf 1020{
e70e8f4c
GT
1021 // This is used to represent whether the database connection should be released
1022 // when this instance of the object is deleted. If using the same connection
925e9792 1023 // for multiple instance of database objects, then the connection should only be
e70e8f4c 1024 // released when the last database instance using the connection is deleted
f6bcfd97 1025 freeDbConn = !pwxDb;
925e9792 1026
3fe813a9
GT
1027 if (GetDb())
1028 GetDb()->SetSqlLogging(sqlLogON);
1029
e70e8f4c 1030 SetupColumns();
108106cf
JS
1031
1032} // Ccontact Constructor
1033
1034
1035void Ccontact::Initialize()
1036{
e70e8f4c
GT
1037 Name[0] = 0;
1038 Addr1[0] = 0;
1039 Addr2[0] = 0;
1040 City[0] = 0;
1041 State[0] = 0;
1042 PostalCode[0] = 0;
1043 Country[0] = 0;
1044 JoinDate.year = 1980;
1045 JoinDate.month = 1;
1046 JoinDate.day = 1;
1047 JoinDate.hour = 0;
1048 JoinDate.minute = 0;
1049 JoinDate.second = 0;
1050 JoinDate.fraction = 0;
1051 NativeLanguage = langENGLISH;
6d841efd 1052 IsDeveloper = false;
e70e8f4c
GT
1053 Contributions = 0;
1054 LinesOfCode = 0L;
da1e87c4
GT
1055 BlobSize = 0L;
1056 memset(Picture, 0, MAX_PICTURE_SIZE);
108106cf
JS
1057} // Ccontact::Initialize
1058
1059
1060Ccontact::~Ccontact()
1061{
e70e8f4c
GT
1062 if (freeDbConn)
1063 {
f6bcfd97 1064 if (!wxDbFreeConnection(GetDb()))
e70e8f4c
GT
1065 {
1066 wxString tStr;
f21b2fd8
GT
1067 tStr = wxT("Unable to Free the Ccontact data table handle\n\n");
1068
74de91cc 1069 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8 1070 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
e70e8f4c
GT
1071 }
1072 }
108106cf
JS
1073} // Ccontract destructor
1074
1075
1076/*
f6bcfd97 1077 * Handles setting up all the connections for the interface from the wxDbTable
925e9792 1078 * functions to interface to the data structure used to store records in
108106cf
JS
1079 * memory, and for all the column definitions that define the table structure
1080 */
f21b2fd8 1081void Ccontact::SetupColumns()
108106cf 1082{
e70e8f4c
GT
1083 // NOTE: Columns now are 8 character names, as that is all dBase can support. Longer
1084 // names can be used for other database engines
da1e87c4
GT
1085 SetColDefs ( 0,wxT("NAME"), DB_DATA_TYPE_VARCHAR, Name, SQL_C_WXCHAR, sizeof(Name), true, true); // Primary index
1086 SetColDefs ( 1,wxT("ADDRESS1"), DB_DATA_TYPE_VARCHAR, Addr1, SQL_C_WXCHAR, sizeof(Addr1), false,true);
1087 SetColDefs ( 2,wxT("ADDRESS2"), DB_DATA_TYPE_VARCHAR, Addr2, SQL_C_WXCHAR, sizeof(Addr2), false,true);
1088 SetColDefs ( 3,wxT("CITY"), DB_DATA_TYPE_VARCHAR, City, SQL_C_WXCHAR, sizeof(City), false,true);
1089 SetColDefs ( 4,wxT("STATE"), DB_DATA_TYPE_VARCHAR, State, SQL_C_WXCHAR, sizeof(State), false,true);
1090 SetColDefs ( 5,wxT("POSTCODE"), DB_DATA_TYPE_VARCHAR, PostalCode, SQL_C_WXCHAR, sizeof(PostalCode), false,true);
1091 SetColDefs ( 6,wxT("COUNTRY"), DB_DATA_TYPE_VARCHAR, Country, SQL_C_WXCHAR, sizeof(Country), false,true);
6d841efd
WS
1092 SetColDefs ( 7,wxT("JOINDATE"), DB_DATA_TYPE_DATE, &JoinDate, SQL_C_TIMESTAMP, sizeof(JoinDate), false,true);
1093 SetColDefs ( 8,wxT("IS_DEV"), DB_DATA_TYPE_INTEGER, &IsDeveloper, SQL_C_BOOLEAN(IsDeveloper), sizeof(IsDeveloper), false,true);
1094 SetColDefs ( 9,wxT("CONTRIBS"), DB_DATA_TYPE_INTEGER, &Contributions, SQL_C_UTINYINT, sizeof(Contributions), false,true);
1095 SetColDefs (10,wxT("LINE_CNT"), DB_DATA_TYPE_INTEGER, &LinesOfCode, SQL_C_ULONG, sizeof(LinesOfCode), false,true);
1096 SetColDefs (11,wxT("LANGUAGE"), DB_DATA_TYPE_INTEGER, &NativeLanguage, SQL_C_ENUM, sizeof(NativeLanguage), false,true);
dd5b579c 1097#ifdef wxODBC_BLOB_SUPPORT
da1e87c4
GT
1098 SetColDefs (12,wxT("PICSIZE"), DB_DATA_TYPE_INTEGER, &BlobSize, SQL_C_ULONG, sizeof(BlobSize), false,true);
1099 SetColDefs (13,wxT("PICTURE"), DB_DATA_TYPE_BLOB, Picture, SQL_C_BINARY, sizeof(Picture), false,true);
3fe813a9 1100#endif
108106cf
JS
1101} // Ccontact::SetupColumns
1102
1103
69a2b59d 1104bool Ccontact::CreateIndexes(bool recreate)
108106cf 1105{
925e9792 1106 // This index could easily be accomplished with an "orderBy" clause,
e70e8f4c
GT
1107 // but is done to show how to construct a non-primary index.
1108 wxString indexName;
f6bcfd97 1109 wxDbIdxDef idxDef[2];
108106cf 1110
74de91cc 1111 wxStrcpy(idxDef[0].ColName, wxT("IS_DEV"));
6d841efd 1112 idxDef[0].Ascending = true;
108106cf 1113
74de91cc 1114 wxStrcpy(idxDef[1].ColName, wxT("NAME"));
6d841efd 1115 idxDef[1].Ascending = true;
108106cf 1116
f6bcfd97 1117 indexName = GetTableName();
74de91cc 1118 indexName += wxT("_IDX1");
108106cf 1119
6d841efd
WS
1120 return CreateIndex(indexName.c_str(), true, 2, idxDef, recreate);
1121
108106cf
JS
1122} // Ccontact::CreateIndexes()
1123
1124
1125/*
1126 * Having a function to do a query on the primary key (and possibly others) is
1127 * very efficient and tighter coding so that it is available where ever the object
1128 * is. Great for use with multiple tables when not using views or outer joins
1129 */
049977d0 1130bool Ccontact::FetchByName(const wxString &name)
108106cf 1131{
24e2b35d 1132 whereStr.Printf(wxT("NAME = '%s'"),name.c_str());
f6bcfd97 1133 SetWhereClause(whereStr.c_str());
da1e87c4 1134 SetOrderByClause(wxEmptyString);
108106cf 1135
e70e8f4c 1136 if (!Query())
6d841efd 1137 return(false);
108106cf 1138
e70e8f4c
GT
1139 // Fetch the record
1140 return(GetNext());
108106cf
JS
1141
1142} // Ccontact::FetchByName()
1143
1144
1145/*
1146 *
1147 * ************* DIALOGS ***************
1148 *
1149 */
1150
1151
1152/* CeditorDlg constructor
1153 *
1154 * Creates the dialog used for creating/editing/deleting/copying a Ccontact object.
1155 * This dialog actually is drawn in the main frame of the program
1156 *
1157 * An instance of Ccontact is created - "Contact" - which is used to hold the Ccontact
1158 * object that is currently being worked with.
1159 */
925e9792 1160
f6fcbb63 1161BEGIN_EVENT_TABLE(CeditorDlg, wxPanel)
6d841efd 1162 EVT_BUTTON(wxID_ANY, CeditorDlg::OnButton)
3f755e2d 1163 EVT_CLOSE(CeditorDlg::OnCloseWindow)
f6fcbb63 1164END_EVENT_TABLE()
925e9792 1165
da1e87c4 1166CeditorDlg::CeditorDlg(wxWindow *parent) : wxPanel (parent, 0, 0, 537, 530)
108106cf 1167{
e70e8f4c
GT
1168 // Since the ::OnCommand() function is overridden, this prevents the widget
1169 // detection in ::OnCommand() until all widgets have been initialized to prevent
1170 // uninitialized pointers from crashing the program
6d841efd 1171 widgetPtrsSet = false;
e70e8f4c 1172
6d841efd 1173 initialized = false;
e70e8f4c 1174
3fe813a9
GT
1175 SetMode(mView);
1176
6d841efd 1177 Show(false);
108106cf
JS
1178} // CeditorDlg constructor
1179
1180
e3065973 1181void CeditorDlg::OnCloseWindow(wxCloseEvent& event)
108106cf 1182{
e70e8f4c 1183 // Clean up time
3f755e2d 1184 if ((mode != mCreate) && (mode != mEdit))
e70e8f4c 1185 {
e70e8f4c
GT
1186 this->Destroy();
1187 }
1188 else
1189 {
94613352 1190 wxMessageBox(wxT("Must finish processing the current record being created/modified before exiting"),wxT("Notice..."),wxOK | wxICON_INFORMATION);
e70e8f4c
GT
1191 event.Veto();
1192 }
e3065973 1193} // CeditorDlg::OnCloseWindow()
108106cf
JS
1194
1195
3ca6a5f0 1196void CeditorDlg::OnButton(wxCommandEvent &event)
f6fcbb63 1197{
3ca6a5f0
BP
1198 wxWindow *win = (wxWindow*) event.GetEventObject();
1199 OnCommand( *win, event );
1200} // CeditorDlg::OnButton()
f6fcbb63 1201
65d7ddc4 1202
74de91cc 1203void CeditorDlg::OnCommand(wxWindow& win, wxCommandEvent& WXUNUSED(event))
108106cf 1204{
e70e8f4c 1205 wxString widgetName;
925e9792 1206
e70e8f4c
GT
1207 widgetName = win.GetName();
1208
1209 if (!widgetPtrsSet)
1210 return;
1211
1212 if (widgetName == pCreateBtn->GetName())
1213 {
ea24eeb2 1214 wxGetApp().Contact->Initialize();
e70e8f4c
GT
1215 PutData();
1216 SetMode( mCreate );
da1e87c4 1217 pNameTxt->SetValue(wxEmptyString);
e70e8f4c
GT
1218 pNameTxt->SetFocus();
1219 return;
1220 }
1221
1222 if (widgetName == pEditBtn->GetName())
1223 {
ea24eeb2 1224 saveName = wxGetApp().Contact->Name;
e70e8f4c
GT
1225 SetMode( mEdit );
1226 pNameTxt->SetFocus();
1227 return;
1228 }
1229
1230 if (widgetName == pCopyBtn->GetName())
1231 {
1232 SetMode(mCreate);
da1e87c4 1233 pNameTxt->SetValue(wxEmptyString);
e70e8f4c
GT
1234 pNameTxt->SetFocus();
1235 return;
1236 }
1237
1238 if (widgetName == pDeleteBtn->GetName())
1239 {
94613352 1240 bool Ok = (wxMessageBox(wxT("Are you sure?"),wxT("Confirm"),wxYES_NO|wxICON_QUESTION) == wxYES);
e70e8f4c
GT
1241
1242 if (!Ok)
1243 return;
1244
ea24eeb2 1245 if (Ok && wxGetApp().Contact->Delete())
e70e8f4c 1246 {
925e9792
WS
1247 // NOTE: Deletions are not finalized until a CommitTrans() is performed.
1248 // If the commit were not performed, the program will continue to
e70e8f4c 1249 // show the table contents as if they were deleted until this instance
925e9792 1250 // of Ccontact is deleted. If the Commit wasn't performed, the
e70e8f4c
GT
1251 // database will automatically Rollback the changes when the database
1252 // connection is terminated
ea24eeb2 1253 wxGetApp().Contact->GetDb()->CommitTrans();
e70e8f4c
GT
1254
1255 // Try to get the row that followed the just deleted row in the orderBy sequence
1256 if (!GetNextRec())
1257 {
1258 // There was now row (in sequence) after the just deleted row, so get the
1259 // row which preceded the just deleted row
1260 if (!GetPrevRec())
1261 {
1262 // There are now no rows remaining, so clear the dialog widgets
ea24eeb2 1263 wxGetApp().Contact->Initialize();
e70e8f4c
GT
1264 PutData();
1265 }
1266 }
1267 SetMode(mode); // force reset of button enable/disable
1268 }
1269 else
1270 // Delete failed
ea24eeb2 1271 wxGetApp().Contact->GetDb()->RollbackTrans();
e70e8f4c
GT
1272
1273 SetMode(mView);
1274 return;
1275 }
1276
1277 if (widgetName == pSaveBtn->GetName())
1278 {
1279 Save();
1280 return;
1281 }
1282
1283 if (widgetName == pCancelBtn->GetName())
1284 {
94613352 1285 bool Ok = (wxMessageBox(wxT("Are you sure?"),wxT("Confirm"),wxYES_NO|wxICON_QUESTION) == wxYES);
e70e8f4c
GT
1286
1287 if (!Ok)
1288 return;
1289
94613352 1290 if (saveName.IsEmpty())
e70e8f4c 1291 {
ea24eeb2 1292 wxGetApp().Contact->Initialize();
e70e8f4c
GT
1293 PutData();
1294 SetMode(mView);
1295 return;
1296 }
1297 else
1298 {
1299 // Requery previous record
ea24eeb2 1300 if (wxGetApp().Contact->FetchByName(saveName))
e70e8f4c
GT
1301 {
1302 PutData();
1303 SetMode(mView);
1304 return;
1305 }
1306 }
1307
1308 // Previous record not available, retrieve first record in table
ea24eeb2
GT
1309 if (wxGetApp().Contact->GetDb()->Dbms() != dbmsPOSTGRES &&
1310 wxGetApp().Contact->GetDb()->Dbms() != dbmsMY_SQL)
e70e8f4c 1311 {
ea24eeb2
GT
1312 wxGetApp().Contact->whereStr = wxT("NAME = (SELECT MIN(NAME) FROM ");
1313 wxGetApp().Contact->whereStr += wxGetApp().Contact->GetTableName();
1314 wxGetApp().Contact->whereStr += wxT(")");
1315 wxGetApp().Contact->SetWhereClause(wxGetApp().Contact->whereStr.c_str());
e70e8f4c
GT
1316 }
1317 else
da1e87c4 1318 wxGetApp().Contact->SetWhereClause(wxEmptyString);
e70e8f4c 1319
ea24eeb2 1320 if (!wxGetApp().Contact->Query())
e70e8f4c
GT
1321 {
1322 wxString tStr;
f21b2fd8 1323 tStr = wxT("ODBC error during Query()\n\n");
74de91cc 1324 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8 1325 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
925e9792 1326
e70e8f4c
GT
1327 SetMode(mView);
1328 return;
1329 }
ea24eeb2 1330 if (wxGetApp().Contact->GetNext()) // Successfully read first record
e70e8f4c
GT
1331 {
1332 PutData();
1333 SetMode(mView);
1334 return;
1335 }
1336 // No contacts are available, clear dialog
ea24eeb2 1337 wxGetApp().Contact->Initialize();
e70e8f4c
GT
1338 PutData();
1339 SetMode(mView);
1340 return;
1341 } // Cancel Button
1342
1343 if (widgetName == pPrevBtn->GetName())
1344 {
1345 if (!GetPrevRec())
1346 wxBell();
1347 return;
1348 } // Prev Button
1349
1350 if (widgetName == pNextBtn->GetName())
1351 {
1352 if (!GetNextRec())
1353 wxBell();
1354 return;
1355 } // Next Button
1356
1357 if (widgetName == pQueryBtn->GetName())
1358 {
1359 // Display the query dialog box
94613352 1360 wxChar qryWhere[DB_MAX_WHERE_CLAUSE_LEN+1];
ea24eeb2 1361 wxStrcpy(qryWhere, (const wxChar*) wxGetApp().Contact->qryWhereStr);
c3677ad3 1362 wxChar *tblName[] = {(wxChar *)CONTACT_TABLE_NAME.c_str(), 0};
ea24eeb2 1363 new CqueryDlg(GetParent(), wxGetApp().Contact->GetDb(), tblName, qryWhere);
e70e8f4c
GT
1364
1365 // Query the first record in the new record set and
1366 // display it, if the query string has changed.
ea24eeb2 1367 if (wxStrcmp(qryWhere, (const wxChar*) wxGetApp().Contact->qryWhereStr))
e70e8f4c 1368 {
ea24eeb2 1369 wxGetApp().Contact->whereStr.Empty();
74de91cc 1370 wxGetApp().Contact->SetOrderByClause(wxT("NAME"));
e70e8f4c 1371
ea24eeb2
GT
1372 if (wxGetApp().Contact->GetDb()->Dbms() != dbmsPOSTGRES &&
1373 wxGetApp().Contact->GetDb()->Dbms() != dbmsMY_SQL)
e70e8f4c 1374 {
ea24eeb2
GT
1375 wxGetApp().Contact->whereStr = wxT("NAME = (SELECT MIN(NAME) FROM ");
1376 wxGetApp().Contact->whereStr += CONTACT_TABLE_NAME;
e70e8f4c 1377 }
925e9792 1378
e70e8f4c 1379 // Append the query where string (if there is one)
ea24eeb2 1380 wxGetApp().Contact->qryWhereStr = qryWhere;
f6bcfd97 1381 if (wxStrlen(qryWhere))
e70e8f4c 1382 {
ea24eeb2
GT
1383 wxGetApp().Contact->whereStr += wxT(" WHERE ");
1384 wxGetApp().Contact->whereStr += wxGetApp().Contact->qryWhereStr;
e70e8f4c
GT
1385 }
1386 // Close the expression with a right paren
ea24eeb2 1387 wxGetApp().Contact->whereStr += wxT(")");
e70e8f4c 1388 // Requery the table
ea24eeb2
GT
1389 wxGetApp().Contact->SetWhereClause(wxGetApp().Contact->whereStr.c_str());
1390 if (!wxGetApp().Contact->Query())
e70e8f4c
GT
1391 {
1392 wxString tStr;
f21b2fd8 1393 tStr = wxT("ODBC error during Query()\n\n");
74de91cc 1394 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8
GT
1395 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
1396
e70e8f4c
GT
1397 return;
1398 }
1399 // Display the first record from the query set
ea24eeb2
GT
1400 if (!wxGetApp().Contact->GetNext())
1401 wxGetApp().Contact->Initialize();
e70e8f4c
GT
1402 PutData();
1403 }
1404
1405 // Enable/Disable the reset button
ea24eeb2 1406 pResetBtn->Enable(!wxGetApp().Contact->qryWhereStr.IsEmpty());
e70e8f4c
GT
1407
1408 return;
1409 } // Query button
1410
1411
1412 if (widgetName == pResetBtn->GetName())
1413 {
1414 // Clear the additional where criteria established by the query feature
da1e87c4 1415 wxGetApp().Contact->qryWhereStr = wxEmptyString;
ea24eeb2 1416 wxGetApp().Contact->SetOrderByClause(wxT("NAME"));
e70e8f4c 1417
ea24eeb2
GT
1418 if (wxGetApp().Contact->GetDb()->Dbms() != dbmsPOSTGRES &&
1419 wxGetApp().Contact->GetDb()->Dbms() != dbmsMY_SQL)
e70e8f4c 1420 {
ea24eeb2
GT
1421 wxGetApp().Contact->whereStr = wxT("NAME = (SELECT MIN(NAME) FROM ");
1422 wxGetApp().Contact->whereStr += CONTACT_TABLE_NAME;
1423 wxGetApp().Contact->whereStr += wxT(")");
e70e8f4c
GT
1424 }
1425
ea24eeb2
GT
1426 wxGetApp().Contact->SetWhereClause(wxGetApp().Contact->whereStr.c_str());
1427 if (!wxGetApp().Contact->Query())
e70e8f4c
GT
1428 {
1429 wxString tStr;
f21b2fd8 1430 tStr = wxT("ODBC error during Query()\n\n");
74de91cc 1431 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8 1432 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
e70e8f4c
GT
1433 return;
1434 }
ea24eeb2
GT
1435 if (!wxGetApp().Contact->GetNext())
1436 wxGetApp().Contact->Initialize();
e70e8f4c 1437 PutData();
6d841efd 1438 pResetBtn->Enable(false);
e70e8f4c
GT
1439
1440 return;
1441 } // Reset button
1442
1443
1444 if (widgetName == pNameListBtn->GetName())
1445 {
c3677ad3
GT
1446 new ClookUpDlg(/* wxWindow *parent */ this,
1447 /* const wxString &windowTitle */ wxT("Select contact name"),
1448 /* const wxString &tableName */ CONTACT_TABLE_NAME,
1449 /* const wxString &dispCol1 */ wxT("NAME"),
1450 /* const wxString &dispCol2 */ wxT("JOINDATE"),
1451 /* const wxString &where */ wxT(""),
1452 /* const wxString &orderBy */ wxT("NAME"),
1453 /* wxDb *pDb */ wxGetApp().READONLY_DB,
1454 /* const wxString &defDir */ wxGetApp().DbConnectInf->GetDefaultDir(),
1455 /* bool distinctValues*/ true);
e70e8f4c 1456
f6bcfd97 1457 if (ListDB_Selection && wxStrlen(ListDB_Selection))
e70e8f4c 1458 {
94613352 1459 wxString w = wxT("NAME = '");
e70e8f4c 1460 w += ListDB_Selection;
94613352 1461 w += wxT("'");
049977d0 1462 GetRec(w);
e70e8f4c
GT
1463 }
1464
1465 return;
1466 }
3f030b48
GT
1467
1468 if (widgetName == pDataTypesBtn->GetName())
1469 {
1470 CheckSupportForAllDataTypes(wxGetApp().READONLY_DB);
74de91cc 1471 wxMessageBox(wxT("Support datatypes was dumped to stdout."));
3f030b48
GT
1472 return;
1473 } // Data types Button
1474
1475 if (widgetName == pDbDiagsBtn->GetName())
1476 {
1477 DisplayDbDiagnostics(wxGetApp().READONLY_DB);
74de91cc 1478 wxMessageBox(wxT("Diagnostics info was dumped to stdout."));
69a2b59d
GT
1479 return;
1480 }
1481
1482 if (widgetName == pCatalogBtn->GetName())
1483 {
da1e87c4 1484 if (wxGetApp().Contact->GetDb()->Catalog(wxEmptyString, wxT("catalog.txt")))
74de91cc 1485 wxMessageBox(wxT("The file 'catalog.txt' was created."));
69a2b59d 1486 else
74de91cc 1487 wxMessageBox(wxT("Creation of the file 'catalog.txt' was failed."));
3f030b48
GT
1488 return;
1489 }
1490
da1e87c4
GT
1491#ifdef wxODBC_BLOB_SUPPORT
1492 if (widgetName == pChooseImageBtn->GetName())
1493 {
1494 OnSelectPict();
1495 }
1496
1497 if (widgetName == pShowImageBtn->GetName())
1498 {
1499 OnShowImage();
1500 }
1501#endif
1502
108106cf
JS
1503} // CeditorDlg::OnCommand()
1504
1505
3ca6a5f0
BP
1506bool CeditorDlg::Initialize()
1507{
925e9792 1508 // Create the data structure and a new database connection.
3ca6a5f0
BP
1509 // (As there is not a pDb being passed in the constructor, a new database
1510 // connection is created)
ea24eeb2 1511 wxGetApp().Contact = new Ccontact();
3ca6a5f0 1512
ea24eeb2 1513 if (!wxGetApp().Contact)
3ca6a5f0 1514 {
94613352 1515 wxMessageBox(wxT("Unable to instantiate an instance of Ccontact"),wxT("Error..."),wxOK | wxICON_EXCLAMATION);
6d841efd 1516 return false;
3ca6a5f0
BP
1517 }
1518
925e9792 1519 // Check if the table exists or not. If it doesn't, ask the user if they want to
3ca6a5f0 1520 // create the table. Continue trying to create the table until it exists, or user aborts
c3677ad3 1521 while (!wxGetApp().Contact->GetDb()->TableExists(CONTACT_TABLE_NAME,
925e9792 1522 wxGetApp().DbConnectInf->GetUserID(),
049977d0 1523 wxGetApp().DbConnectInf->GetDefaultDir()))
3ca6a5f0
BP
1524 {
1525 wxString tStr;
f21b2fd8
GT
1526 tStr.Printf(wxT("Unable to open the table '%s'. The table may\nneed to be created.\n\nDo you wish to try to create/clear the table?\n\n"),CONTACT_TABLE_NAME);
1527 bool createTable = (wxMessageBox(tStr.c_str(),wxT("Confirm"),wxYES_NO|wxICON_QUESTION) == wxYES);
3ca6a5f0
BP
1528
1529 if (!createTable)
1530 {
1531// Close();
6d841efd 1532 return false;
3ca6a5f0
BP
1533 }
1534 else
6d841efd 1535 wxGetApp().CreateDataTable(false);
3ca6a5f0
BP
1536 }
1537
1538 // Tables must be "opened" before anything other than creating/deleting table can be done
ea24eeb2 1539 if (!wxGetApp().Contact->Open())
3ca6a5f0
BP
1540 {
1541 // Table does exist, or there was some problem opening it. Currently this should
973f2539 1542 // never fail, except in the case of the table not exisiting or the current
3ca6a5f0 1543 // user has insufficent privileges to access the table
3fe813a9 1544#if 1
3ca6a5f0
BP
1545// This code is experimenting with a new function that will hopefully be available
1546// in the 2.4 release. This check will determine whether the open failing was due
1547// to the table not existing, or the users privileges being insufficient to
1548// open the table.
ea24eeb2
GT
1549 if (!wxGetApp().Contact->GetDb()->TablePrivileges(CONTACT_TABLE_NAME, wxT("SELECT"),
1550 wxGetApp().Contact->GetDb()->GetUsername(),
69a2b59d
GT
1551 wxGetApp().Contact->GetDb()->GetUsername(),
1552 wxGetApp().DbConnectInf->GetDefaultDir()))
3ca6a5f0
BP
1553 {
1554 wxString tStr;
3fe813a9 1555 tStr.Printf(wxT("Unable to open the table '%s' (likely due to\ninsufficient privileges of the logged in user).\n\n"),CONTACT_TABLE_NAME);
f21b2fd8 1556
74de91cc 1557 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8 1558 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
3ca6a5f0 1559 }
925e9792 1560 else
3ca6a5f0 1561#endif
ea24eeb2
GT
1562 if (!wxGetApp().Contact->GetDb()->TableExists(CONTACT_TABLE_NAME,
1563 wxGetApp().Contact->GetDb()->GetUsername(),
3fe813a9 1564 wxGetApp().DbConnectInf->GetDefaultDir()))
3ca6a5f0
BP
1565 {
1566 wxString tStr;
3fe813a9 1567 tStr.Printf(wxT("Unable to open the table '%s' as the table\ndoes not appear to exist in the tablespace available\nto the currently logged in user.\n\n"),CONTACT_TABLE_NAME);
74de91cc 1568 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8 1569 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
3ca6a5f0
BP
1570 }
1571
6d841efd 1572 return false;
3ca6a5f0
BP
1573 }
1574
1575 // Build the dialog
1576
da1e87c4
GT
1577 (void)new wxStaticBox(this, EDITOR_DIALOG_FN_GROUP, wxEmptyString, wxPoint(15, 1), wxSize(497, 69), 0, wxT("FunctionGrp"));
1578 (void)new wxStaticBox(this, EDITOR_DIALOG_SEARCH_GROUP, wxEmptyString, wxPoint(417, 1), wxSize(95, 242), 0, wxT("SearchGrp"));
94613352
GT
1579
1580 pCreateBtn = new wxButton(this, EDITOR_DIALOG_CREATE, wxT("&Create"), wxPoint( 25, 21), wxSize( 70, 35), 0, wxDefaultValidator, wxT("CreateBtn"));
1581 pEditBtn = new wxButton(this, EDITOR_DIALOG_EDIT, wxT("&Edit"), wxPoint(102, 21), wxSize( 70, 35), 0, wxDefaultValidator, wxT("EditBtn"));
1582 pDeleteBtn = new wxButton(this, EDITOR_DIALOG_DELETE, wxT("&Delete"), wxPoint(179, 21), wxSize( 70, 35), 0, wxDefaultValidator, wxT("DeleteBtn"));
1583 pCopyBtn = new wxButton(this, EDITOR_DIALOG_COPY, wxT("Cop&y"), wxPoint(256, 21), wxSize( 70, 35), 0, wxDefaultValidator, wxT("CopyBtn"));
1584 pSaveBtn = new wxButton(this, EDITOR_DIALOG_SAVE, wxT("&Save"), wxPoint(333, 21), wxSize( 70, 35), 0, wxDefaultValidator, wxT("SaveBtn"));
1585 pCancelBtn = new wxButton(this, EDITOR_DIALOG_CANCEL, wxT("C&ancel"), wxPoint(430, 21), wxSize( 70, 35), 0, wxDefaultValidator, wxT("CancelBtn"));
1586 pPrevBtn = new wxButton(this, EDITOR_DIALOG_PREV, wxT("<< &Prev"), wxPoint(430, 81), wxSize( 70, 35), 0, wxDefaultValidator, wxT("PrevBtn"));
1587 pNextBtn = new wxButton(this, EDITOR_DIALOG_NEXT, wxT("&Next >>"), wxPoint(430, 121), wxSize( 70, 35), 0, wxDefaultValidator, wxT("NextBtn"));
1588 pQueryBtn = new wxButton(this, EDITOR_DIALOG_QUERY, wxT("&Query"), wxPoint(430, 161), wxSize( 70, 35), 0, wxDefaultValidator, wxT("QueryBtn"));
1589 pResetBtn = new wxButton(this, EDITOR_DIALOG_RESET, wxT("&Reset"), wxPoint(430, 200), wxSize( 70, 35), 0, wxDefaultValidator, wxT("ResetBtn"));
6d841efd 1590 pNameMsg = new wxStaticText(this, EDITOR_DIALOG_NAME_MSG, wxT("Name:"), wxPoint( 17, 80), wxDefaultSize, 0, wxT("NameMsg"));
da1e87c4 1591 pNameTxt = new wxTextCtrl(this, EDITOR_DIALOG_NAME_TEXT, wxEmptyString, wxPoint( 17, 97), wxSize(308, 25), 0, wxDefaultValidator, wxT("NameTxt"));
94613352 1592 pNameListBtn = new wxButton(this, EDITOR_DIALOG_LOOKUP, wxT("&Lookup"), wxPoint(333, 97), wxSize( 70, 24), 0, wxDefaultValidator, wxT("LookupBtn"));
6d841efd 1593 pAddress1Msg = new wxStaticText(this, EDITOR_DIALOG_ADDRESS1_MSG, wxT("Address:"), wxPoint( 17, 130), wxDefaultSize, 0, wxT("Address1Msg"));
da1e87c4 1594 pAddress1Txt = new wxTextCtrl(this, EDITOR_DIALOG_ADDRESS2_TEXT, wxEmptyString, wxPoint( 17, 147), wxSize(308, 25), 0, wxDefaultValidator, wxT("Address1Txt"));
6d841efd 1595 pAddress2Msg = new wxStaticText(this, EDITOR_DIALOG_ADDRESS2_MSG, wxT("Address:"), wxPoint( 17, 180), wxDefaultSize, 0, wxT("Address2Msg"));
da1e87c4 1596 pAddress2Txt = new wxTextCtrl(this, EDITOR_DIALOG_ADDRESS2_TEXT, wxEmptyString, wxPoint( 17, 197), wxSize(308, 25), 0, wxDefaultValidator, wxT("Address2Txt"));
6d841efd 1597 pCityMsg = new wxStaticText(this, EDITOR_DIALOG_CITY_MSG, wxT("City:"), wxPoint( 17, 230), wxDefaultSize, 0, wxT("CityMsg"));
da1e87c4 1598 pCityTxt = new wxTextCtrl(this, EDITOR_DIALOG_CITY_TEXT, wxEmptyString, wxPoint( 17, 247), wxSize(225, 25), 0, wxDefaultValidator, wxT("CityTxt"));
6d841efd 1599 pStateMsg = new wxStaticText(this, EDITOR_DIALOG_STATE_MSG, wxT("State:"), wxPoint(250, 230), wxDefaultSize, 0, wxT("StateMsg"));
da1e87c4 1600 pStateTxt = new wxTextCtrl(this, EDITOR_DIALOG_STATE_TEXT, wxEmptyString, wxPoint(250, 247), wxSize(153, 25), 0, wxDefaultValidator, wxT("StateTxt"));
6d841efd 1601 pCountryMsg = new wxStaticText(this, EDITOR_DIALOG_COUNTRY_MSG, wxT("Country:"), wxPoint( 17, 280), wxDefaultSize, 0, wxT("CountryMsg"));
da1e87c4 1602 pCountryTxt = new wxTextCtrl(this, EDITOR_DIALOG_COUNTRY_TEXT, wxEmptyString, wxPoint( 17, 297), wxSize(225, 25), 0, wxDefaultValidator, wxT("CountryTxt"));
6d841efd 1603 pPostalCodeMsg = new wxStaticText(this, EDITOR_DIALOG_POSTAL_MSG, wxT("Postal Code:"),wxPoint(250, 280), wxDefaultSize, 0, wxT("PostalCodeMsg"));
da1e87c4 1604 pPostalCodeTxt = new wxTextCtrl(this, EDITOR_DIALOG_POSTAL_TEXT, wxEmptyString, wxPoint(250, 297), wxSize(153, 25), 0, wxDefaultValidator, wxT("PostalCodeTxt"));
3ca6a5f0
BP
1605
1606 wxString choice_strings[5];
94613352
GT
1607 choice_strings[0] = wxT("English");
1608 choice_strings[1] = wxT("French");
1609 choice_strings[2] = wxT("German");
1610 choice_strings[3] = wxT("Spanish");
1611 choice_strings[4] = wxT("Other");
3ca6a5f0 1612
422d0ff0 1613 pNativeLangChoice = new wxChoice(this, EDITOR_DIALOG_LANG_CHOICE, wxPoint( 17, 346), wxSize(277, wxDefaultCoord), 5, choice_strings);
6d841efd 1614 pNativeLangMsg = new wxStaticText(this, EDITOR_DIALOG_LANG_MSG, wxT("Native language:"), wxPoint( 17, 330), wxDefaultSize, 0, wxT("NativeLangMsg"));
3ca6a5f0
BP
1615
1616 wxString radio_strings[2];
94613352
GT
1617 radio_strings[0] = wxT("No");
1618 radio_strings[1] = wxT("Yes");
6d841efd
WS
1619 pDeveloperRadio = new wxRadioBox(this,EDITOR_DIALOG_DEVELOPER, wxT("Developer:"), wxPoint(303, 330), wxDefaultSize, 2, radio_strings, 2, wxHORIZONTAL);
1620 pJoinDateMsg = new wxStaticText(this, EDITOR_DIALOG_JOIN_MSG, wxT("Date joined:"), wxPoint( 17, 380), wxDefaultSize, 0, wxT("JoinDateMsg"));
da1e87c4 1621 pJoinDateTxt = new wxTextCtrl(this, EDITOR_DIALOG_JOIN_TEXT, wxEmptyString, wxPoint( 17, 397), wxSize(150, 25), 0, wxDefaultValidator, wxT("JoinDateTxt"));
6d841efd 1622 pContribMsg = new wxStaticText(this, EDITOR_DIALOG_CONTRIB_MSG,wxT("Contributions:"), wxPoint(175, 380), wxDefaultSize, 0, wxT("ContribMsg"));
da1e87c4 1623 pContribTxt = new wxTextCtrl(this, EDITOR_DIALOG_CONTRIB_TEXT, wxEmptyString, wxPoint(175, 397), wxSize(120, 25), 0, wxDefaultValidator, wxT("ContribTxt"));
6d841efd 1624 pLinesMsg = new wxStaticText(this, EDITOR_DIALOG_LINES_MSG, wxT("Lines of code:"), wxPoint(303, 380), wxDefaultSize, 0, wxT("LinesMsg"));
da1e87c4 1625 pLinesTxt = new wxTextCtrl(this, EDITOR_DIALOG_LINES_TEXT, wxEmptyString, wxPoint(303, 397), wxSize(100, 25), 0, wxDefaultValidator, wxT("LinesTxt"));
3ca6a5f0 1626
69a2b59d 1627 pCatalogBtn = new wxButton(this, EDITOR_DIALOG_CATALOG, wxT("Catalo&g"), wxPoint(430, 287), wxSize( 70, 35), 0, wxDefaultValidator, wxT("CatalogBtn"));
3f030b48
GT
1628 pDataTypesBtn = new wxButton(this, EDITOR_DIALOG_DATATYPES, wxT("Data&types"), wxPoint(430, 337), wxSize( 70, 35), 0, wxDefaultValidator, wxT("DataTypesBtn"));
1629 pDbDiagsBtn = new wxButton(this, EDITOR_DIALOG_DB_DIAGS, wxT("DB Dia&gs"), wxPoint(430, 387), wxSize( 70, 35), 0, wxDefaultValidator, wxT("DbDiagsBtn"));
1630
da1e87c4
GT
1631#ifdef wxODBC_BLOB_SUPPORT
1632 pPictureMsg = new wxStaticText(this, EDITOR_DIALOG_PIC_MSG, wxT("Picture:"), wxPoint( 17,430), wxDefaultSize, 0, wxT("PicMsg"));
1633 pPictSizeMsg = new wxStaticText(this, EDITOR_DIALOG_PICSIZE_MSG, wxT("Picture Bytes:"), wxPoint(175,430), wxDefaultSize, 0, wxT("PicSizeMsg"));
1634 pChooseImageBtn = new wxButton(this, EDITOR_DIALOG_PIC_BROWSE, wxT("Select..."), wxPoint( 17,447), wxSize( 70, 24), 0, wxDefaultValidator, wxT("PicBrowseBtn"));
1635 pShowImageBtn = new wxButton(this, EDITOR_DIALOG_PIC_SHOW, wxT("Show..."), wxPoint( 97,447), wxSize( 70, 24), 0, wxDefaultValidator, wxT("PictShowBtn"));
1636 pPictSizeTxt = new wxTextCtrl(this, EDITOR_DIALOG_PIC_SIZE_TEXT, wxEmptyString, wxPoint(175,447), wxSize(120, 25), 0, wxDefaultValidator, wxT("PictSizeTxt"));
1637#endif
1638
1639 // Now that all the widgets on the panel are created, its safe to allow ::OnCommand() to
3ca6a5f0 1640 // handle all widget processing
6d841efd 1641 widgetPtrsSet = true;
3ca6a5f0 1642
925e9792 1643 // Setup the orderBy and where clauses to return back a single record as the result set,
3ca6a5f0
BP
1644 // as there will only be one record being shown on the dialog at a time, this optimizes
1645 // network traffic by only returning a one row result
925e9792 1646
ea24eeb2 1647 wxGetApp().Contact->SetOrderByClause(wxT("NAME")); // field name to sort by
3ca6a5f0
BP
1648
1649 // The wxString "whereStr" is not a member of the wxDbTable object, it is a member variable
1650 // specifically in the Ccontact class. It is used here for simpler construction of a varying
1651 // length string, and then after the string is built, the wxDbTable member variable "where" is
1652 // assigned the pointer to the constructed string.
1653 //
925e9792 1654 // The constructed where clause below has a sub-query within it "SELECT MIN(NAME) FROM %s"
3ca6a5f0 1655 // to achieve a single row (in this case the first name in alphabetical order).
925e9792 1656
ea24eeb2
GT
1657 if (wxGetApp().Contact->GetDb()->Dbms() != dbmsPOSTGRES &&
1658 wxGetApp().Contact->GetDb()->Dbms() != dbmsMY_SQL)
3ca6a5f0 1659 {
ea24eeb2
GT
1660 wxGetApp().Contact->whereStr.Printf(wxT("NAME = (SELECT MIN(NAME) FROM %s)"),
1661 wxGetApp().Contact->GetTableName().c_str());
94613352 1662 // NOTE: (const wxChar*) returns a pointer which may not be valid later, so this is short term use only
ea24eeb2 1663 wxGetApp().Contact->SetWhereClause(wxGetApp().Contact->whereStr);
3ca6a5f0
BP
1664 }
1665 else
da1e87c4 1666 wxGetApp().Contact->SetWhereClause(wxEmptyString);
3ca6a5f0 1667
925e9792
WS
1668 // Perform the Query to get the result set.
1669 // NOTE: If there are no rows returned, that is a valid result, so Query() would return true.
6d841efd 1670 // Only if there is a database error will Query() come back as false
ea24eeb2 1671 if (!wxGetApp().Contact->Query())
3ca6a5f0
BP
1672 {
1673 wxString tStr;
f21b2fd8 1674 tStr = wxT("ODBC error during Query()\n\n");
74de91cc 1675 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8 1676 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
6d841efd 1677 return false;
3ca6a5f0
BP
1678 }
1679
1680 // Since Query succeeded, now get the row that was returned
ea24eeb2 1681 if (!wxGetApp().Contact->GetNext())
925e9792
WS
1682 // If the GetNext() failed at this point, then there are no rows to retrieve,
1683 // so clear the values in the members of "Contact" so that PutData() blanks the
3ca6a5f0 1684 // widgets on the dialog
ea24eeb2
GT
1685 wxGetApp().Contact->Initialize();
1686/*
1687 wxGetApp().Contact->GetDb()->RollbackTrans();
1688*/
3ca6a5f0
BP
1689 SetMode(mView);
1690 PutData();
1691
6d841efd 1692 Show(true);
3ca6a5f0 1693
6d841efd
WS
1694 initialized = true;
1695 return true;
3ca6a5f0
BP
1696} // CeditorDlg::Initialize()
1697
da1e87c4
GT
1698#ifdef wxODBC_BLOB_SUPPORT
1699
1700void CeditorDlg::OnSelectPict()
1701{
1702 wxFileDialog dlg(this, wxT("Choose an image file less than 60K"), wxEmptyString, wxEmptyString, wxT("JPEG files (*.jpg)|*.jpg|GIF files (*.gif)|*.gif|BMP files (*.bmp)|*.bmp|All Files (*.*)|*.*"), wxOPEN);
1703
1704 if (dlg.ShowModal() == wxID_OK)
1705 {
1706 wxFile file(dlg.GetPath());
1707
1708 if (file.IsOpened())
1709 {
1710 off_t iSize = file.Length();
1711
1712 if ((iSize > 0) && (iSize < MAX_PICTURE_SIZE))
1713 {
1714 off_t iReadSize = 0;
1715
1716 wxGetApp().Contact->BlobSize = iSize;
1717
1718 memset(wxGetApp().Contact->Picture, 0, MAX_PICTURE_SIZE);
1719
1720 iReadSize = file.Read(wxGetApp().Contact->Picture, iSize);
1721
1722 if (iReadSize < iSize)
1723 wxMessageBox(wxT("Something bad happened while reading..."), wxT("BLOB Loading Error"), wxOK | wxICON_EXCLAMATION);
1724
1725 wxString tStr;
1726 tStr.Printf(wxT("%lu"),iSize);
1727 pPictSizeTxt->SetValue(tStr);
1728 }
1729 else
1730 wxMessageBox(wxT("Selected File is TOO BIG. 60k is the max image size"), wxT("BLOB Loading Error"), wxOK | wxICON_EXCLAMATION);
1731 }
1732 else
1733 wxMessageBox(wxT("Unable to open the requested image file"), wxT("File Access Error"), wxOK | wxICON_EXCLAMATION);
1734 }
1735}
1736
1737void CeditorDlg::OnShowImage()
1738{
1739 if (wxGetApp().Contact->BlobSize > 0)
1740 {
1741 CimageDlg dlg(this, wxGetApp().Contact->Picture, wxGetApp().Contact->BlobSize);
1742
1743 dlg.ShowModal();
1744 }
1745}
1746
1747#endif
3ca6a5f0 1748
108106cf
JS
1749void CeditorDlg::FieldsEditable()
1750{
3fe813a9
GT
1751 if (!widgetPtrsSet)
1752 return;
1753
e70e8f4c
GT
1754 pNameTxt->Enable((mode == mCreate) || (mode == mEdit));
1755 pAddress1Txt->Enable((mode == mCreate) || (mode == mEdit));
1756 pAddress2Txt->Enable((mode == mCreate) || (mode == mEdit));
1757 pCityTxt->Enable((mode == mCreate) || (mode == mEdit));
1758 pStateTxt->Enable((mode == mCreate) || (mode == mEdit));
1759 pPostalCodeTxt->Enable((mode == mCreate) || (mode == mEdit));
1760 pCountryTxt->Enable((mode == mCreate) || (mode == mEdit));
1761
1762 pJoinDateTxt->Enable((mode == mCreate) || (mode == mEdit));
1763 pContribTxt->Enable((mode == mCreate) || (mode == mEdit));
1764 pLinesTxt->Enable((mode == mCreate) || (mode == mEdit));
1765 pNativeLangChoice->Enable((mode == mCreate) || (mode == mEdit));
1766 pDeveloperRadio->Enable((mode == mCreate) || (mode == mEdit));
108106cf 1767
da1e87c4
GT
1768#ifdef wxODBC_BLOB_SUPPORT
1769 pPictSizeTxt->Enable(false);
1770 pChooseImageBtn->Enable((mode == mCreate) || (mode == mEdit));
1771 pShowImageBtn->Enable(wxGetApp().Contact && wxGetApp().Contact->BlobSize > 0); //((mode == mCreate) || (mode == mEdit));
1772#endif
1773
108106cf
JS
1774} // CeditorDlg::FieldsEditable()
1775
1776
1777void CeditorDlg::SetMode(enum DialogModes m)
1778{
6d841efd 1779 bool edit = false;
e70e8f4c
GT
1780
1781 mode = m;
1782 switch (mode)
1783 {
1784 case mCreate:
1785 case mEdit:
6d841efd 1786 edit = true;
e70e8f4c
GT
1787 break;
1788 case mView:
1789 case mSearch:
6d841efd 1790 edit = false;
e70e8f4c
GT
1791 break;
1792 default:
1793 break;
1794 };
1795
1796 if (widgetPtrsSet)
1797 {
1798 pCreateBtn->Enable( !edit );
da1e87c4
GT
1799 pEditBtn->Enable( !edit && (wxStrcmp(wxGetApp().Contact->Name, wxEmptyString) != 0) );
1800 pDeleteBtn->Enable( !edit && (wxStrcmp(wxGetApp().Contact->Name, wxEmptyString)!=0) );
1801 pCopyBtn->Enable( !edit && (wxStrcmp(wxGetApp().Contact->Name, wxEmptyString)!=0) );
e70e8f4c
GT
1802 pSaveBtn->Enable( edit );
1803 pCancelBtn->Enable( edit );
1804 pPrevBtn->Enable( !edit );
1805 pNextBtn->Enable( !edit );
1806 pQueryBtn->Enable( !edit );
ea24eeb2 1807 pResetBtn->Enable( !edit && !wxGetApp().Contact->qryWhereStr.IsEmpty() );
e70e8f4c
GT
1808 pNameListBtn->Enable( !edit );
1809 }
1810
1811 FieldsEditable();
108106cf
JS
1812} // CeditorDlg::SetMode()
1813
1814
1fc5dd6f 1815bool CeditorDlg::PutData()
108106cf 1816{
e70e8f4c 1817 wxString tStr;
108106cf 1818
ea24eeb2
GT
1819 pNameTxt->SetValue(wxGetApp().Contact->Name);
1820 pAddress1Txt->SetValue(wxGetApp().Contact->Addr1);
1821 pAddress2Txt->SetValue(wxGetApp().Contact->Addr2);
1822 pCityTxt->SetValue(wxGetApp().Contact->City);
1823 pStateTxt->SetValue(wxGetApp().Contact->State);
1824 pCountryTxt->SetValue(wxGetApp().Contact->Country);
1825 pPostalCodeTxt->SetValue(wxGetApp().Contact->PostalCode);
108106cf 1826
ea24eeb2 1827 tStr.Printf(wxT("%d/%d/%d"),wxGetApp().Contact->JoinDate.month,wxGetApp().Contact->JoinDate.day,wxGetApp().Contact->JoinDate.year);
e70e8f4c 1828 pJoinDateTxt->SetValue(tStr);
108106cf 1829
ea24eeb2 1830 tStr.Printf(wxT("%d"),wxGetApp().Contact->Contributions);
e70e8f4c 1831 pContribTxt->SetValue(tStr);
108106cf 1832
ea24eeb2 1833 tStr.Printf(wxT("%lu"),wxGetApp().Contact->LinesOfCode);
e70e8f4c 1834 pLinesTxt->SetValue(tStr);
108106cf 1835
ea24eeb2 1836 pNativeLangChoice->SetSelection(wxGetApp().Contact->NativeLanguage);
108106cf 1837
ea24eeb2 1838 pDeveloperRadio->SetSelection(wxGetApp().Contact->IsDeveloper);
108106cf 1839
da1e87c4
GT
1840#ifdef wxODBC_BLOB_SUPPORT
1841 tStr.Printf(wxT("%lu"),wxGetApp().Contact->BlobSize);
1842 pPictSizeTxt->SetValue(tStr);
1843 pShowImageBtn->Enable(wxGetApp().Contact->BlobSize > 0);
1844#endif
1845
6d841efd 1846 return true;
108106cf
JS
1847} // Ceditor::PutData()
1848
1849
1850/*
1851 * Reads the data out of all the widgets on the dialog. Some data evaluation is done
1852 * to ensure that there is a name entered and that the date field is valid.
1853 *
6d841efd 1854 * A return value of true means that valid data was retrieved from the dialog, otherwise
108106cf
JS
1855 * invalid data was found (and a message was displayed telling the user what to fix), and
1856 * the data was not placed into the appropraite fields of Ccontact
1857 */
1fc5dd6f 1858bool CeditorDlg::GetData()
108106cf 1859{
e70e8f4c
GT
1860 // Validate that the data currently entered into the widgets is valid data
1861
1862 wxString tStr;
1863 tStr = pNameTxt->GetValue();
da1e87c4 1864 if (!wxStrcmp((const wxChar*) tStr, wxEmptyString))
e70e8f4c 1865 {
da1e87c4 1866 wxMessageBox(wxT("A name is required for entry into the contact table"), wxT("Notice..."), wxOK | wxICON_INFORMATION);
6d841efd 1867 return false;
e70e8f4c
GT
1868 }
1869
6d841efd 1870 bool invalid = false;
f369dd4f 1871 int mm = 1,dd = 1,yyyy = 2001;
e70e8f4c
GT
1872 int first, second;
1873
1874 tStr = pJoinDateTxt->GetValue();
94613352 1875 if (tStr.Freq(wxT('/')) != 2)
6d841efd 1876 invalid = true;
e70e8f4c
GT
1877
1878 // Find the month, day, and year tokens
1879 if (!invalid)
1880 {
94613352
GT
1881 first = tStr.First(wxT('/'));
1882 second = tStr.Last(wxT('/'));
e70e8f4c 1883
74de91cc
JS
1884 mm = wxAtoi(tStr.SubString(0,first));
1885 dd = wxAtoi(tStr.SubString(first+1,second));
1886 yyyy = wxAtoi(tStr.SubString(second+1,tStr.Length()-1));
e70e8f4c
GT
1887
1888 invalid = !(mm && dd && yyyy);
1889 }
1890
1891 // Force Year 2000 compliance
1892 if (!invalid && (yyyy < 1000))
6d841efd 1893 invalid = true;
e70e8f4c
GT
1894
1895 // Check the token ranges for validity
1896 if (!invalid)
1897 {
1898 if (yyyy > 9999)
6d841efd 1899 invalid = true;
e70e8f4c 1900 else if ((mm < 1) || (mm > 12))
6d841efd 1901 invalid = true;
e70e8f4c
GT
1902 else
1903 {
1904 if (dd < 1)
6d841efd 1905 invalid = true;
e70e8f4c
GT
1906 else
1907 {
1908 int days[12] = {31,28,31,30,31,30,
1909 31,31,30,31,30,31};
1910 if (dd > days[mm-1])
1911 {
6d841efd 1912 invalid = true;
e70e8f4c
GT
1913 if ((dd == 29) && (mm == 2))
1914 {
1915 if (((yyyy % 4) == 0) && (((yyyy % 100) != 0) || ((yyyy % 400) == 0)))
6d841efd 1916 invalid = false;
e70e8f4c
GT
1917 }
1918 }
1919 }
1920 }
1921 }
1922
1923 if (!invalid)
1924 {
29787237
JS
1925 wxGetApp().Contact->JoinDate.month = (unsigned short) mm;
1926 wxGetApp().Contact->JoinDate.day = (unsigned short) dd;
1927 wxGetApp().Contact->JoinDate.year = (short) yyyy;
e70e8f4c
GT
1928 }
1929 else
1930 {
94613352 1931 wxMessageBox(wxT("Improper date format. Please check the date\nspecified and try again.\n\nNOTE: Dates are in american format (MM/DD/YYYY)"),wxT("Notice..."),wxOK | wxICON_INFORMATION);
6d841efd 1932 return false;
e70e8f4c
GT
1933 }
1934
1935 tStr = pNameTxt->GetValue();
ea24eeb2
GT
1936 wxStrcpy(wxGetApp().Contact->Name,(const wxChar*) tStr);
1937 wxStrcpy(wxGetApp().Contact->Addr1,pAddress1Txt->GetValue());
1938 wxStrcpy(wxGetApp().Contact->Addr2,pAddress2Txt->GetValue());
1939 wxStrcpy(wxGetApp().Contact->City,pCityTxt->GetValue());
1940 wxStrcpy(wxGetApp().Contact->State,pStateTxt->GetValue());
1941 wxStrcpy(wxGetApp().Contact->Country,pCountryTxt->GetValue());
1942 wxStrcpy(wxGetApp().Contact->PostalCode,pPostalCodeTxt->GetValue());
e70e8f4c 1943
925e9792 1944 wxGetApp().Contact->Contributions = (UCHAR)wxAtoi(pContribTxt->GetValue());
74de91cc 1945 wxGetApp().Contact->LinesOfCode = wxAtol(pLinesTxt->GetValue());
e70e8f4c 1946
ea24eeb2
GT
1947 wxGetApp().Contact->NativeLanguage = (enum Language) pNativeLangChoice->GetSelection();
1948 wxGetApp().Contact->IsDeveloper = pDeveloperRadio->GetSelection() > 0;
e70e8f4c 1949
6d841efd 1950 return true;
108106cf
JS
1951} // CeditorDlg::GetData()
1952
1953
1954/*
1955 * Retrieve data from the dialog, verify the validity of the data, and if it is valid,
1956 * try to insert/update the data to the table based on the current 'mode' the dialog
1957 * is set to.
1958 *
6d841efd
WS
1959 * A return value of true means the insert/update was completed successfully, a return
1960 * value of false means that Save() failed. If returning false, then this function
108106cf
JS
1961 * has displayed a detailed error message for the user.
1962 */
1fc5dd6f 1963bool CeditorDlg::Save()
108106cf 1964{
6d841efd 1965 bool failed = false;
e70e8f4c
GT
1966
1967 // Read the data in the widgets of the dialog to get the user's data
1968 if (!GetData())
6d841efd 1969 failed = true;
e70e8f4c
GT
1970
1971 // Perform any other required validations necessary before saving
1972 if (!failed)
1973 {
1974 wxBeginBusyCursor();
1975
1976 if (mode == mCreate)
1977 {
925e9792 1978 RETCODE result = (RETCODE)wxGetApp().Contact->Insert();
e70e8f4c
GT
1979
1980 failed = (result != DB_SUCCESS);
1981 if (failed)
1982 {
1983 // Some errors may be expected, like a duplicate key, so handle those instances with
1984 // specific error messages.
1985 if (result == DB_ERR_INTEGRITY_CONSTRAINT_VIOL)
1986 {
1987 wxString tStr;
f21b2fd8 1988 tStr = wxT("A duplicate key value already exists in the table.\nUnable to save record\n\n");
74de91cc 1989 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8 1990 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
e70e8f4c
GT
1991 }
1992 else
1993 {
5d59e67a 1994 // Some other unexpected error occurred
e70e8f4c 1995 wxString tStr;
f21b2fd8 1996 tStr = wxT("Database insert failed\n\n");
74de91cc 1997 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8 1998 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
e70e8f4c
GT
1999 }
2000 }
2001 }
2002 else // mode == mEdit
2003 {
5d59e67a 2004 wxGetApp().Contact->GetDb()->RollbackTrans();
74de91cc 2005 wxGetApp().Contact->whereStr.Printf(wxT("NAME = '%s'"),saveName.c_str());
ea24eeb2 2006 if (!wxGetApp().Contact->UpdateWhere(wxGetApp().Contact->whereStr))
e70e8f4c
GT
2007 {
2008 wxString tStr;
f21b2fd8 2009 tStr = wxT("Database update failed\n\n");
74de91cc 2010 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8 2011 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
6d841efd 2012 failed = true;
e70e8f4c
GT
2013 }
2014 }
2015
2016 if (!failed)
2017 {
ea24eeb2 2018 wxGetApp().Contact->GetDb()->CommitTrans();
e70e8f4c
GT
2019 SetMode(mView); // Sets the dialog mode back to viewing after save is successful
2020 }
2021 else
ea24eeb2 2022 wxGetApp().Contact->GetDb()->RollbackTrans();
e70e8f4c
GT
2023
2024 wxEndBusyCursor();
2025 }
2026
2027 return !failed;
108106cf
JS
2028} // CeditorDlg::Save()
2029
2030
2031/*
2032 * Where this program is only showing a single row at a time in the dialog,
2033 * a special where clause must be built to find just the single row which,
2034 * in sequence, would follow the currently displayed row.
2035 */
1fc5dd6f 2036bool CeditorDlg::GetNextRec()
108106cf 2037{
e70e8f4c
GT
2038 wxString w;
2039
ea24eeb2
GT
2040 if (wxGetApp().Contact->GetDb()->Dbms() != dbmsPOSTGRES &&
2041 wxGetApp().Contact->GetDb()->Dbms() != dbmsMY_SQL)
e70e8f4c 2042 {
94613352 2043 w = wxT("NAME = (SELECT MIN(NAME) FROM ");
ea24eeb2 2044 w += wxGetApp().Contact->GetTableName();
94613352 2045 w += wxT(" WHERE NAME > '");
e70e8f4c
GT
2046 }
2047 else
94613352 2048 w = wxT("(NAME > '");
e70e8f4c 2049
ea24eeb2 2050 w += wxGetApp().Contact->Name;
94613352 2051 w += wxT("'");
e70e8f4c
GT
2052
2053 // If a query where string is currently set, append that criteria
ea24eeb2 2054 if (!wxGetApp().Contact->qryWhereStr.IsEmpty())
e70e8f4c 2055 {
94613352 2056 w += wxT(" AND (");
ea24eeb2 2057 w += wxGetApp().Contact->qryWhereStr;
94613352 2058 w += wxT(")");
e70e8f4c
GT
2059 }
2060
94613352 2061 w += wxT(")");
049977d0 2062 return(GetRec(w));
108106cf
JS
2063
2064} // CeditorDlg::GetNextRec()
2065
2066
2067/*
2068 * Where this program is only showing a single row at a time in the dialog,
2069 * a special where clause must be built to find just the single row which,
2070 * in sequence, would precede the currently displayed row.
2071 */
1fc5dd6f 2072bool CeditorDlg::GetPrevRec()
108106cf 2073{
e70e8f4c 2074 wxString w;
108106cf 2075
ea24eeb2
GT
2076 if (wxGetApp().Contact->GetDb()->Dbms() != dbmsPOSTGRES &&
2077 wxGetApp().Contact->GetDb()->Dbms() != dbmsMY_SQL)
e70e8f4c 2078 {
94613352 2079 w = wxT("NAME = (SELECT MAX(NAME) FROM ");
ea24eeb2 2080 w += wxGetApp().Contact->GetTableName();
94613352 2081 w += wxT(" WHERE NAME < '");
e70e8f4c
GT
2082 }
2083 else
94613352 2084 w = wxT("(NAME < '");
65d7ddc4 2085
ea24eeb2 2086 w += wxGetApp().Contact->Name;
94613352 2087 w += wxT("'");
108106cf 2088
e70e8f4c 2089 // If a query where string is currently set, append that criteria
ea24eeb2 2090 if (!wxGetApp().Contact->qryWhereStr.IsEmpty())
e70e8f4c 2091 {
94613352 2092 w += wxT(" AND (");
ea24eeb2 2093 w += wxGetApp().Contact->qryWhereStr;
94613352 2094 w += wxT(")");
e70e8f4c 2095 }
108106cf 2096
94613352 2097 w += wxT(")");
108106cf 2098
049977d0 2099 return(GetRec(w));
108106cf
JS
2100
2101} // CeditorDlg::GetPrevRec()
2102
2103
2104/*
2105 * This function is here to avoid duplicating this same code in both the
2106 * GetPrevRec() and GetNextRec() functions
2107 */
049977d0 2108bool CeditorDlg::GetRec(const wxString &whereStr)
108106cf 2109{
ea24eeb2
GT
2110 wxGetApp().Contact->SetWhereClause(whereStr);
2111 wxGetApp().Contact->SetOrderByClause(wxT("NAME"));
e70e8f4c 2112
ea24eeb2 2113 if (!wxGetApp().Contact->Query())
e70e8f4c
GT
2114 {
2115 wxString tStr;
f21b2fd8 2116 tStr = wxT("ODBC error during Query()\n\n");
74de91cc 2117 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8 2118 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
e70e8f4c 2119
6d841efd 2120 return(false);
e70e8f4c
GT
2121 }
2122
ea24eeb2 2123 if (wxGetApp().Contact->GetNext())
e70e8f4c
GT
2124 {
2125 PutData();
6d841efd 2126 return(true);
e70e8f4c
GT
2127 }
2128 else
6d841efd 2129 return(false);
108106cf
JS
2130} // CeditorDlg::GetRec()
2131
2132
2133
2134/*
2135 * CparameterDlg constructor
2136 */
e3065973
JS
2137
2138BEGIN_EVENT_TABLE(CparameterDlg, wxDialog)
65d7ddc4
GT
2139 EVT_BUTTON(PARAMETER_DIALOG_SAVE, CparameterDlg::OnButton)
2140 EVT_BUTTON(PARAMETER_DIALOG_CANCEL, CparameterDlg::OnButton)
e3065973
JS
2141 EVT_CLOSE(CparameterDlg::OnCloseWindow)
2142END_EVENT_TABLE()
2143
6d841efd 2144CparameterDlg::CparameterDlg(wxWindow *parent) : wxDialog (parent, PARAMETER_DIALOG, wxT("ODBC parameter settings"), wxDefaultPosition, wxSize(400, 325))
108106cf 2145{
e70e8f4c
GT
2146 // Since the ::OnCommand() function is overridden, this prevents the widget
2147 // detection in ::OnCommand() until all widgets have been initialized to prevent
2148 // uninitialized pointers from crashing the program
6d841efd 2149 widgetPtrsSet = false;
e70e8f4c 2150
6d841efd 2151 pParamODBCSourceMsg = new wxStaticText(this, PARAMETER_DIALOG_SOURCE_MSG, wxT("ODBC data sources:"), wxPoint( 10, 10), wxDefaultSize, 0, wxT("ParamODBCSourceMsg"));
da1e87c4 2152 pParamODBCSourceList = new wxListBox(this, PARAMETER_DIALOG_SOURCE_LISTBOX, wxPoint( 10, 29), wxSize(285, 150), 0, 0, wxLB_SINGLE|wxLB_ALWAYS_SB, wxDefaultValidator, wxT("ParamODBCSourceList"));
6d841efd 2153 pParamUserNameMsg = new wxStaticText(this, PARAMETER_DIALOG_NAME_MSG, wxT("Database user name:"), wxPoint( 10, 193), wxDefaultSize, 0, wxT("ParamUserNameMsg"));
da1e87c4 2154 pParamUserNameTxt = new wxTextCtrl(this, PARAMETER_DIALOG_NAME_TEXT, wxEmptyString, wxPoint(10, 209), wxSize( 140, 25), 0, wxDefaultValidator, wxT("ParamUserNameTxt"));
6d841efd 2155 pParamPasswordMsg = new wxStaticText(this, PARAMETER_DIALOG_PASSWORD_MSG, wxT("Password:"), wxPoint(156, 193), wxDefaultSize, 0, wxT("ParamPasswordMsg"));
da1e87c4 2156 pParamPasswordTxt = new wxTextCtrl(this, PARAMETER_DIALOG_PASSWORD_TEXT, wxEmptyString, wxPoint(156, 209), wxSize( 140, 25), 0, wxDefaultValidator, wxT("ParamPasswordTxt"));
6d841efd 2157 pParamDirPathMsg = new wxStaticText(this, PARAMETER_DIALOG_DIRPATH_MSG, wxT("Directory:"), wxPoint( 10, 243), wxDefaultSize, 0, wxT("ParamDirPathMsg"));
da1e87c4 2158 pParamDirPathTxt = new wxTextCtrl(this, PARAMETER_DIALOG_DIRPATH_TEXT, wxEmptyString, wxPoint( 10, 259), wxSize(140, 25), 0, wxDefaultValidator, wxT("ParamDirPathTxt"));
94613352
GT
2159 pParamSaveBtn = new wxButton(this, PARAMETER_DIALOG_SAVE, wxT("&Save"), wxPoint(310, 21), wxSize( 70, 35), 0, wxDefaultValidator, wxT("ParamSaveBtn"));
2160 pParamCancelBtn = new wxButton(this, PARAMETER_DIALOG_CANCEL, wxT("C&ancel"), wxPoint(310, 66), wxSize( 70, 35), 0, wxDefaultValidator, wxT("ParamCancelBtn"));
e70e8f4c 2161
925e9792 2162 // Now that all the widgets on the panel are created, its safe to allow ::OnCommand() to
e70e8f4c 2163 // handle all widget processing
6d841efd 2164 widgetPtrsSet = true;
e70e8f4c 2165
6d841efd 2166 saved = false;
e70e8f4c
GT
2167 savedParamSettings = wxGetApp().params;
2168
2169 Centre(wxBOTH);
2170 PutData();
2171 ShowModal();
108106cf
JS
2172} // CparameterDlg constructor
2173
2174
e3065973 2175void CparameterDlg::OnCloseWindow(wxCloseEvent& event)
108106cf 2176{
e70e8f4c
GT
2177 // Put any additional checking necessary to make certain it is alright
2178 // to close the program here that is not done elsewhere
2179 if (!saved)
2180 {
94613352 2181 bool Ok = (wxMessageBox(wxT("No changes have been saved.\n\nAre you sure you wish exit the parameter screen?"),wxT("Confirm"),wxYES_NO|wxICON_QUESTION) == wxYES);
925e9792 2182
e70e8f4c 2183 if (!Ok)
e3065973
JS
2184 {
2185 event.Veto();
e70e8f4c 2186 return;
e3065973 2187 }
925e9792 2188
e70e8f4c
GT
2189 wxGetApp().params = savedParamSettings;
2190 }
108106cf 2191
e70e8f4c
GT
2192 if (GetParent() != NULL)
2193 GetParent()->SetFocus();
e3065973 2194
3ca6a5f0
BP
2195 while (wxIsBusy())
2196 wxEndBusyCursor();
2197
6d841efd 2198 Show(false);
3ca6a5f0
BP
2199 SetReturnCode(0); // added so BoundsChecker would not report use of uninitialized variable
2200
2201 this->Destroy();
2202} // CparameterDlg::OnCloseWindow()
108106cf
JS
2203
2204
65d7ddc4
GT
2205void CparameterDlg::OnButton( wxCommandEvent &event )
2206{
e70e8f4c
GT
2207 wxWindow *win = (wxWindow*) event.GetEventObject();
2208 OnCommand( *win, event );
65d7ddc4
GT
2209}
2210
3ca6a5f0 2211
74de91cc 2212void CparameterDlg::OnCommand(wxWindow& win, wxCommandEvent& WXUNUSED(event))
108106cf 2213{
e70e8f4c 2214 wxString widgetName;
925e9792 2215
e70e8f4c
GT
2216 widgetName = win.GetName();
2217
2218 if (!widgetPtrsSet)
2219 return;
2220
2221 if (widgetName == pParamSaveBtn->GetName())
2222 {
2223 if (Save())
2224 {
2225 wxString tStr;
94613352 2226 tStr = wxT("Database parameters have been saved.");
e70e8f4c 2227 if (GetParent() != NULL) // The parameter dialog was not called during startup due to a missing cfg file
94613352
GT
2228 tStr += wxT("\nNew parameters will take effect the next time the program is started.");
2229 wxMessageBox(tStr,wxT("Notice..."),wxOK | wxICON_INFORMATION);
6d841efd 2230 saved = true;
e70e8f4c
GT
2231 Close();
2232 }
2233 return;
2234 }
2235
2236 if (widgetName == pParamCancelBtn->GetName())
2237 {
2238 Close();
2239 return;
2240 }
108106cf
JS
2241} // CparameterDlg::OnCommand()
2242
2243
1fc5dd6f 2244bool CparameterDlg::PutData()
108106cf 2245{
e70e8f4c
GT
2246 // Fill the data source list box
2247 FillDataSourceList();
2248
2249 // Fill in the fields from the params object
2250 if (wxGetApp().params.ODBCSource && wxStrlen(wxGetApp().params.ODBCSource))
f369dd4f
GT
2251 {
2252 int index = pParamODBCSourceList->FindString(wxGetApp().params.ODBCSource);
6d841efd 2253 if (index != wxNOT_FOUND)
f369dd4f
GT
2254 pParamODBCSourceList->SetSelection(index);
2255 }
e70e8f4c
GT
2256 pParamUserNameTxt->SetValue(wxGetApp().params.UserName);
2257 pParamPasswordTxt->SetValue(wxGetApp().params.Password);
2258 pParamDirPathTxt->SetValue(wxGetApp().params.DirPath);
6d841efd 2259 return true;
108106cf
JS
2260} // CparameterDlg::PutData()
2261
2262
1fc5dd6f 2263bool CparameterDlg::GetData()
108106cf 2264{
e70e8f4c 2265 wxString tStr;
da1e87c4 2266 if (pParamODBCSourceList->GetStringSelection() != wxEmptyString)
e70e8f4c
GT
2267 {
2268 tStr = pParamODBCSourceList->GetStringSelection();
da1e87c4 2269 if (tStr.Length() > ((int)(sizeof(wxGetApp().params.ODBCSource) / sizeof(wxChar))-1))
e70e8f4c
GT
2270 {
2271 wxString errmsg;
da1e87c4
GT
2272 errmsg.Printf(wxT("ODBC Data source name is longer than the data structure to hold it.\n'Cparameter.ODBCSource' must have a larger character array\nto handle a data source with this long of a name\n\nThe data source currently selected is %d characters long."), tStr.Length());
2273 wxMessageBox(errmsg, wxT("Internal program error..."), wxOK | wxICON_EXCLAMATION);
6d841efd 2274 return false;
e70e8f4c 2275 }
f6bcfd97 2276 wxStrcpy(wxGetApp().params.ODBCSource, tStr);
e70e8f4c
GT
2277 }
2278 else
6d841efd 2279 return false;
925e9792 2280
e70e8f4c 2281 tStr = pParamUserNameTxt->GetValue();
da1e87c4 2282 if (tStr.Length() > ((int)(sizeof(wxGetApp().params.UserName) / sizeof(wxChar))-1))
e70e8f4c
GT
2283 {
2284 wxString errmsg;
da1e87c4
GT
2285 errmsg.Printf(wxT("User name is longer than the data structure to hold it.\n'Cparameter.UserName' must have a larger character array\nto handle a data source with this long of a name\n\nThe user name currently specified is %d characters long."), tStr.Length());
2286 wxMessageBox(errmsg, wxT("Internal program error..."), wxOK | wxICON_EXCLAMATION);
6d841efd 2287 return false;
e70e8f4c 2288 }
f6bcfd97 2289 wxStrcpy(wxGetApp().params.UserName, tStr);
e70e8f4c
GT
2290
2291 tStr = pParamPasswordTxt->GetValue();
da1e87c4 2292 if (tStr.Length() > ((int)(sizeof(wxGetApp().params.Password) / sizeof(wxChar))-1))
e70e8f4c
GT
2293 {
2294 wxString errmsg;
da1e87c4
GT
2295 errmsg.Printf(wxT("Password is longer than the data structure to hold it.\n'Cparameter.Password' must have a larger character array\nto handle a data source with this long of a name\n\nThe password currently specified is %d characters long."), tStr.Length());
2296 wxMessageBox(errmsg, wxT("Internal program error..."), wxOK | wxICON_EXCLAMATION);
6d841efd 2297 return false;
e70e8f4c 2298 }
f6bcfd97 2299 wxStrcpy(wxGetApp().params.Password,tStr);
e70e8f4c
GT
2300
2301 tStr = pParamDirPathTxt->GetValue();
94613352 2302 tStr.Replace(wxT("\\"),wxT("/"));
da1e87c4 2303 if (tStr.Length() > ((int)(sizeof(wxGetApp().params.DirPath) / sizeof(wxChar))-1))
e70e8f4c
GT
2304 {
2305 wxString errmsg;
da1e87c4
GT
2306 errmsg.Printf(wxT("DirPath is longer than the data structure to hold it.\n'Cparameter.DirPath' must have a larger character array\nto handle a data source with this long of a name\n\nThe password currently specified is %d characters long."), tStr.Length());
2307 wxMessageBox(errmsg, wxT("Internal program error..."), wxOK | wxICON_EXCLAMATION);
6d841efd 2308 return false;
e70e8f4c 2309 }
f6bcfd97 2310 wxStrcpy(wxGetApp().params.DirPath,tStr);
6d841efd 2311 return true;
108106cf
JS
2312} // CparameterDlg::GetData()
2313
2314
1fc5dd6f 2315bool CparameterDlg::Save()
108106cf 2316{
049977d0
GT
2317 // Copy the current params in case user cancels changing
2318 // the params, so that we can reset them.
e70e8f4c
GT
2319 if (!GetData())
2320 {
049977d0 2321 wxGetApp().params = savedParamSettings;
6d841efd 2322 return false;
e70e8f4c
GT
2323 }
2324
049977d0 2325 wxGetApp().WriteParamFile(wxGetApp().params);
e70e8f4c 2326
6d841efd 2327 return true;
108106cf
JS
2328} // CparameterDlg::Save()
2329
2330
2331void CparameterDlg::FillDataSourceList()
2332{
da1e87c4
GT
2333 wxChar Dsn[SQL_MAX_DSN_LENGTH+1];
2334 wxChar DsDesc[254+1];
44420d2e 2335 wxSortedArrayString strArr;
108106cf 2336
049977d0 2337 while (wxDbGetDataSource(wxGetApp().DbConnectInf->GetHenv(), Dsn,
da1e87c4 2338 SQL_MAX_DSN_LENGTH, DsDesc, 254))
44420d2e
WS
2339 {
2340 strArr.Add(Dsn);
2341 }
108106cf 2342
da1e87c4 2343 for (size_t i=0; i < strArr.GetCount(); i++)
6d841efd 2344 {
44420d2e 2345 pParamODBCSourceList->Append(strArr[i].c_str());
6d841efd 2346 }
3ca6a5f0 2347
3fe813a9 2348} // CparameterDlg::FillDataSourceList()
108106cf
JS
2349
2350
f6fcbb63 2351BEGIN_EVENT_TABLE(CqueryDlg, wxDialog)
6d841efd 2352 EVT_BUTTON(wxID_ANY, CqueryDlg::OnButton)
e3065973 2353 EVT_CLOSE(CqueryDlg::OnCloseWindow)
f6fcbb63 2354END_EVENT_TABLE()
3ca6a5f0 2355
925e9792 2356
108106cf 2357// CqueryDlg() constructor
925e9792 2358CqueryDlg::CqueryDlg(wxWindow *parent, wxDb *pDb, wxChar *tblName[],
d3358961 2359 const wxString &pWhereArg) :
6d841efd 2360 wxDialog (parent, QUERY_DIALOG, wxT("Query"), wxDefaultPosition, wxSize(480, 360))
108106cf 2361{
e70e8f4c
GT
2362 wxBeginBusyCursor();
2363
2364 colInf = 0;
2365 dbTable = 0;
2366 masterTableName = tblName[0];
6d841efd 2367 widgetPtrsSet = false;
e70e8f4c
GT
2368 pDB = pDb;
2369
2370 // Initialize the WHERE clause from the string passed in
d3358961
GT
2371 pWhere = pWhereArg; // Save a pointer to the output buffer
2372 if (pWhere.Length() > (unsigned int)DB_MAX_WHERE_CLAUSE_LEN) // Check the length of the buffer passed in
e70e8f4c
GT
2373 {
2374 wxString s;
94613352
GT
2375 s.Printf(wxT("Maximum where clause length exceeded.\nLength must be less than %d"), DB_MAX_WHERE_CLAUSE_LEN+1);
2376 wxMessageBox(s,wxT("Error..."),wxOK | wxICON_EXCLAMATION);
e70e8f4c
GT
2377 Close();
2378 return;
2379 }
2380
da1e87c4
GT
2381 pQueryCol1Msg = new wxStaticText(this, QUERY_DIALOG_COL_MSG, wxT("Column 1:"), wxPoint( 10, 10), wxSize( 69, 16), 0, wxT("QueryCol1Msg"));
2382 pQueryCol1Choice = new wxChoice(this, QUERY_DIALOG_COL_CHOICE, wxPoint( 10, 27), wxSize(250, 27), 0, 0, 0, wxDefaultValidator, wxT("QueryCol1Choice"));
2383 pQueryNotMsg = new wxStaticText(this, QUERY_DIALOG_NOT_MSG, wxT("NOT"), wxPoint(268, 10), wxDefaultSize, 0, wxT("QueryNotMsg"));
2384 pQueryNotCheck = new wxCheckBox(this, QUERY_DIALOG_NOT_CHECKBOX, wxEmptyString, wxPoint(275, 37), wxSize( 20, 20), 0, wxDefaultValidator, wxT("QueryNotCheck"));
e70e8f4c
GT
2385
2386 wxString choice_strings[9];
94613352
GT
2387 choice_strings[0] = wxT("=");
2388 choice_strings[1] = wxT("<");
2389 choice_strings[2] = wxT(">");
2390 choice_strings[3] = wxT("<=");
2391 choice_strings[4] = wxT(">=");
2392 choice_strings[5] = wxT("Begins");
2393 choice_strings[6] = wxT("Contains");
2394 choice_strings[7] = wxT("Like");
2395 choice_strings[8] = wxT("Between");
2396
6d841efd 2397 pQueryOperatorMsg = new wxStaticText(this, QUERY_DIALOG_OP_MSG, wxT("Operator:"), wxPoint(305, 10), wxDefaultSize, 0, wxT("QueryOperatorMsg"));
94613352
GT
2398 pQueryOperatorChoice = new wxChoice(this, QUERY_DIALOG_OP_CHOICE, wxPoint(305, 27), wxSize( 80, 27), 9, choice_strings, 0, wxDefaultValidator, wxT("QueryOperatorChoice"));
2399 pQueryCol2Msg = new wxStaticText(this, QUERY_DIALOG_COL2_MSG, wxT("Column 2:"), wxPoint( 10, 65), wxSize( 69, 16), 0, wxT("QueryCol2Msg"));
2400 pQueryCol2Choice = new wxChoice(this, QUERY_DIALOG_COL2_CHOICE, wxPoint( 10, 82), wxSize(250, 27), 0, 0, 0, wxDefaultValidator, wxT("QueryCol2Choice"));
6d841efd 2401 pQuerySqlWhereMsg = new wxStaticText(this, QUERY_DIALOG_WHERE_MSG, wxT("SQL where clause:"), wxPoint( 10, 141), wxDefaultSize, 0, wxT("QuerySqlWhereMsg"));
da1e87c4 2402 pQuerySqlWhereMtxt = new wxTextCtrl(this, QUERY_DIALOG_WHERE_TEXT, wxEmptyString, wxPoint( 10, 159), wxSize(377, 134), wxTE_MULTILINE, wxDefaultValidator, wxT("QuerySqlWhereMtxt"));
94613352
GT
2403 pQueryAddBtn = new wxButton(this, QUERY_DIALOG_ADD, wxT("&Add"), wxPoint(406, 24), wxSize( 56, 26), 0, wxDefaultValidator, wxT("QueryAddBtn"));
2404 pQueryAndBtn = new wxButton(this, QUERY_DIALOG_AND, wxT("A&nd"), wxPoint(406, 58), wxSize( 56, 26), 0, wxDefaultValidator, wxT("QueryAndBtn"));
2405 pQueryOrBtn = new wxButton(this, QUERY_DIALOG_OR, wxT("&Or"), wxPoint(406, 92), wxSize( 56, 26), 0, wxDefaultValidator, wxT("QueryOrBtn"));
2406 pQueryLParenBtn = new wxButton(this, QUERY_DIALOG_LPAREN, wxT("("), wxPoint(406, 126), wxSize( 26, 26), 0, wxDefaultValidator, wxT("QueryLParenBtn"));
2407 pQueryRParenBtn = new wxButton(this, QUERY_DIALOG_RPAREN, wxT(")"), wxPoint(436, 126), wxSize( 26, 26), 0, wxDefaultValidator, wxT("QueryRParenBtn"));
2408 pQueryDoneBtn = new wxButton(this, QUERY_DIALOG_DONE, wxT("&Done"), wxPoint(406, 185), wxSize( 56, 26), 0, wxDefaultValidator, wxT("QueryDoneBtn"));
2409 pQueryClearBtn = new wxButton(this, QUERY_DIALOG_CLEAR, wxT("C&lear"), wxPoint(406, 218), wxSize( 56, 26), 0, wxDefaultValidator, wxT("QueryClearBtn"));
2410 pQueryCountBtn = new wxButton(this, QUERY_DIALOG_COUNT, wxT("&Count"), wxPoint(406, 252), wxSize( 56, 26), 0, wxDefaultValidator, wxT("QueryCountBtn"));
6d841efd 2411 pQueryValue1Msg = new wxStaticText(this, QUERY_DIALOG_VALUE1_MSG, wxT("Value:"), wxPoint(277, 66), wxDefaultSize, 0, wxT("QueryValue1Msg"));
da1e87c4 2412 pQueryValue1Txt = new wxTextCtrl(this, QUERY_DIALOG_VALUE1_TEXT, wxEmptyString, wxPoint(277, 83), wxSize(108, 25), 0, wxDefaultValidator, wxT("QueryValue1Txt"));
6d841efd 2413 pQueryValue2Msg = new wxStaticText(this, QUERY_DIALOG_VALUE2_MSG, wxT("AND"), wxPoint(238, 126), wxDefaultSize, 0, wxT("QueryValue2Msg"));
da1e87c4
GT
2414 pQueryValue2Txt = new wxTextCtrl(this, QUERY_DIALOG_VALUE2_TEXT, wxEmptyString, wxPoint(277, 120), wxSize(108, 25), 0, wxDefaultValidator, wxT("QueryValue2Txt"));
2415 pQueryHintGrp = new wxStaticBox(this, QUERY_DIALOG_HINT_GROUP, wxEmptyString, wxPoint( 10, 291), wxSize(377, 40), 0, wxT("QueryHintGrp"));
2416 pQueryHintMsg = new wxStaticText(this, QUERY_DIALOG_HINT_MSG, wxEmptyString, wxPoint( 16, 306), wxDefaultSize, 0, wxT("QueryHintMsg"));
e70e8f4c 2417
6d841efd 2418 widgetPtrsSet = true;
e70e8f4c
GT
2419 // Initialize the dialog
2420 wxString qualName;
94613352 2421 pQueryCol2Choice->Append(wxT("VALUE -->"));
e70e8f4c
GT
2422 colInf = pDB->GetColumns(tblName);
2423
2424 if (!colInf)
2425 {
2426 wxEndBusyCursor();
2427 wxString tStr;
f21b2fd8 2428 tStr = wxT("ODBC error during GetColumns()\n\n");
74de91cc 2429 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8 2430 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
e70e8f4c
GT
2431 return;
2432 }
2433
2434 int i;
f6bcfd97 2435 for (i = 0; colInf[i].colName && wxStrlen(colInf[i].colName); i++)
e70e8f4c
GT
2436 {
2437 // If there is more than one table being queried, qualify
2438 // the column names with the table name prefix.
f6bcfd97 2439 if (tblName[1] && wxStrlen(tblName[1]))
e70e8f4c 2440 {
94613352 2441 qualName.Printf(wxT("%s.%s"), colInf[i].tableName, colInf[i].colName);
e70e8f4c
GT
2442 pQueryCol1Choice->Append(qualName);
2443 pQueryCol2Choice->Append(qualName);
2444 }
2445 else // Single table query, append just the column names
2446 {
2447 pQueryCol1Choice->Append(colInf[i].colName);
2448 pQueryCol2Choice->Append(colInf[i].colName);
2449 }
2450 }
2451
2452 pQueryCol1Choice->SetSelection(0);
2453 pQueryCol2Choice->SetSelection(0);
2454 pQueryOperatorChoice->SetSelection(0);
2455
6d841efd
WS
2456 pQueryValue2Msg->Show(false);
2457 pQueryValue2Txt->Show(false);
e70e8f4c
GT
2458
2459 pQueryHintMsg->SetLabel(langQRY_EQ);
2460
d3358961 2461 pQuerySqlWhereMtxt->SetValue(pWhere.c_str());
e70e8f4c
GT
2462
2463 wxEndBusyCursor();
2464
2465 // Display the dialog window
2466 Centre(wxBOTH);
2467 ShowModal();
108106cf
JS
2468} // CqueryDlg() constructor
2469
2470
da1e87c4
GT
2471CqueryDlg::~CqueryDlg()
2472{
2473} // CqueryDlg::~CqueryDlg() destructor
2474
2475
3ca6a5f0 2476void CqueryDlg::OnButton(wxCommandEvent &event)
f6fcbb63
RR
2477{
2478 wxWindow *win = (wxWindow*) event.GetEventObject();
2479 OnCommand( *win, event );
3ca6a5f0
BP
2480} // CqueryDlg::OnButton()
2481
f6fcbb63 2482
74de91cc 2483void CqueryDlg::OnCommand(wxWindow& win, wxCommandEvent& WXUNUSED(event))
108106cf 2484{
e70e8f4c
GT
2485 // Widget pointers won't be set when the dialog is constructed.
2486 // Control is passed through this function once for each widget on
2487 // a dialog as the dialog is constructed.
2488 if (!widgetPtrsSet)
2489 return;
2490
2491 wxString widgetName = win.GetName();
2492
2493 // Operator choice box
2494 if (widgetName == pQueryOperatorChoice->GetName())
2495 {
2496 // Set the help text
2497 switch((qryOp) pQueryOperatorChoice->GetSelection())
2498 {
3ca6a5f0
BP
2499 case qryOpEQ:
2500 pQueryHintMsg->SetLabel(langQRY_EQ);
2501 break;
2502 case qryOpLT:
2503 pQueryHintMsg->SetLabel(langQRY_LT);
2504 break;
2505 case qryOpGT:
2506 pQueryHintMsg->SetLabel(langQRY_GT);
2507 break;
2508 case qryOpLE:
2509 pQueryHintMsg->SetLabel(langQRY_LE);
2510 break;
2511 case qryOpGE:
2512 pQueryHintMsg->SetLabel(langQRY_GE);
2513 break;
2514 case qryOpBEGINS:
2515 pQueryHintMsg->SetLabel(langQRY_BEGINS);
2516 break;
2517 case qryOpCONTAINS:
2518 pQueryHintMsg->SetLabel(langQRY_CONTAINS);
2519 break;
2520 case qryOpLIKE:
2521 pQueryHintMsg->SetLabel(langQRY_LIKE);
2522 break;
2523 case qryOpBETWEEN:
2524 pQueryHintMsg->SetLabel(langQRY_BETWEEN);
2525 break;
e70e8f4c
GT
2526 }
2527
2528 // Hide the value2 widget
6d841efd
WS
2529 pQueryValue2Msg->Show(false); // BETWEEN will show this widget
2530 pQueryValue2Txt->Show(false); // BETWEEN will show this widget
e70e8f4c
GT
2531
2532 // Disable the NOT operator for <, <=, >, >=
2533 switch((qryOp) pQueryOperatorChoice->GetSelection())
2534 {
3ca6a5f0
BP
2535 case qryOpLT:
2536 case qryOpGT:
2537 case qryOpLE:
2538 case qryOpGE:
2539 pQueryNotCheck->SetValue(0);
6d841efd 2540 pQueryNotCheck->Enable(false);
3ca6a5f0
BP
2541 break;
2542 default:
6d841efd 2543 pQueryNotCheck->Enable(true);
3ca6a5f0 2544 break;
e70e8f4c
GT
2545 }
2546
2547 // Manipulate the dialog to handle the selected operator
2548 switch((qryOp) pQueryOperatorChoice->GetSelection())
2549 {
3ca6a5f0
BP
2550 case qryOpEQ:
2551 case qryOpLT:
2552 case qryOpGT:
2553 case qryOpLE:
2554 case qryOpGE:
6d841efd 2555 pQueryCol2Choice->Enable(true);
3ca6a5f0
BP
2556 if (pQueryCol2Choice->GetSelection()) // Column name is highlighted
2557 {
6d841efd
WS
2558 pQueryValue1Msg->Show(false);
2559 pQueryValue1Txt->Show(false);
3ca6a5f0
BP
2560 }
2561 else // "Value" is highlighted
2562 {
6d841efd
WS
2563 pQueryValue1Msg->Show(true);
2564 pQueryValue1Txt->Show(true);
3ca6a5f0
BP
2565 pQueryValue1Txt->SetFocus();
2566 }
2567 break;
2568 case qryOpBEGINS:
2569 case qryOpCONTAINS:
2570 case qryOpLIKE:
2571 pQueryCol2Choice->SetSelection(0);
6d841efd
WS
2572 pQueryCol2Choice->Enable(false);
2573 pQueryValue1Msg->Show(true);
2574 pQueryValue1Txt->Show(true);
e70e8f4c 2575 pQueryValue1Txt->SetFocus();
3ca6a5f0
BP
2576 break;
2577 case qryOpBETWEEN:
2578 pQueryCol2Choice->SetSelection(0);
6d841efd
WS
2579 pQueryCol2Choice->Enable(false);
2580 pQueryValue2Msg->Show(true);
2581 pQueryValue2Txt->Show(true);
2582 pQueryValue1Msg->Show(true);
2583 pQueryValue1Txt->Show(true);
3ca6a5f0
BP
2584 pQueryValue1Txt->SetFocus();
2585 break;
e70e8f4c
GT
2586 }
2587
2588 return;
2589
2590 } // Operator choice box
2591
2592 // Column 2 choice
2593 if (widgetName == pQueryCol2Choice->GetName())
2594 {
2595 if (pQueryCol2Choice->GetSelection()) // Column name is highlighted
2596 {
6d841efd
WS
2597 pQueryValue1Msg->Show(false);
2598 pQueryValue1Txt->Show(false);
e70e8f4c
GT
2599 }
2600 else // "Value" is highlighted
2601 {
6d841efd
WS
2602 pQueryValue1Msg->Show(true);
2603 pQueryValue1Txt->Show(true);
e70e8f4c
GT
2604 pQueryValue1Txt->SetFocus();
2605 }
2606 return;
e70e8f4c
GT
2607 } // Column 2 choice
2608
2609 // Add button
2610 if (widgetName == pQueryAddBtn->GetName())
2611 {
2612 ProcessAddBtn();
2613 return;
e70e8f4c
GT
2614 } // Add button
2615
2616 // And button
2617 if (widgetName == pQueryAndBtn->GetName())
2618 {
94613352 2619 AppendToWhere(wxT(" AND\n"));
e70e8f4c 2620 return;
e70e8f4c
GT
2621 } // And button
2622
2623 // Or button
2624 if (widgetName == pQueryOrBtn->GetName())
2625 {
94613352 2626 AppendToWhere(wxT(" OR\n"));
e70e8f4c 2627 return;
e70e8f4c
GT
2628 } // Or button
2629
2630 // Left Paren button
2631 if (widgetName == pQueryLParenBtn->GetName())
2632 {
94613352 2633 AppendToWhere(wxT("("));
e70e8f4c 2634 return;
e70e8f4c
GT
2635 } // Left Paren button
2636
2637 // Right paren button
2638 if (widgetName == pQueryRParenBtn->GetName())
2639 {
94613352 2640 AppendToWhere(wxT(")"));
e70e8f4c 2641 return;
e70e8f4c
GT
2642 } // Right Paren button
2643
2644 // Done button
2645 if (widgetName == pQueryDoneBtn->GetName())
2646 {
2647 // Be sure the where clause will not overflow the output buffer
3ca6a5f0 2648 if (wxStrlen(pQuerySqlWhereMtxt->GetValue()) > (unsigned int)DB_MAX_WHERE_CLAUSE_LEN)
e70e8f4c
GT
2649 {
2650 wxString s;
94613352
GT
2651 s.Printf(wxT("Maximum where clause length exceeded.\nLength must be less than %d"), DB_MAX_WHERE_CLAUSE_LEN+1);
2652 wxMessageBox(s,wxT("Error..."),wxOK | wxICON_EXCLAMATION);
e70e8f4c
GT
2653 return;
2654 }
2655 // Validate the where clause for things such as matching parens
2656 if (!ValidateWhereClause())
2657 return;
2658 // Copy the where clause to the output buffer and exit
d3358961 2659 pWhere = pQuerySqlWhereMtxt->GetValue();
e70e8f4c
GT
2660 Close();
2661 return;
e70e8f4c
GT
2662 } // Done button
2663
2664 // Clear button
2665 if (widgetName == pQueryClearBtn->GetName())
2666 {
da1e87c4 2667 bool Ok = (wxMessageBox(wxT("Are you sure you wish to clear the Query?"), wxT("Confirm"), wxYES_NO|wxICON_QUESTION) == wxYES);
e70e8f4c
GT
2668
2669 if (Ok)
da1e87c4
GT
2670 pQuerySqlWhereMtxt->SetValue(wxEmptyString);
2671
e70e8f4c 2672 return;
e70e8f4c
GT
2673 } // Clear button
2674
2675 // Count button
2676 if (widgetName == pQueryCountBtn->GetName())
2677 {
2678 wxBeginBusyCursor();
2679 ProcessCountBtn();
2680 wxEndBusyCursor();
2681 return;
e70e8f4c 2682 } // Count button
108106cf
JS
2683
2684} // CqueryDlg::OnCommand
2685
2686
74de91cc 2687void CqueryDlg::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
108106cf 2688{
e70e8f4c 2689 // Clean up
ea24eeb2 2690 wxDELETEA(colInf);
e70e8f4c 2691
ea24eeb2 2692 wxDELETE(dbTable);
e70e8f4c
GT
2693
2694 GetParent()->SetFocus();
2695 while (wxIsBusy())
2696 wxEndBusyCursor();
108106cf 2697
6d841efd 2698 Show(false);
3ca6a5f0 2699 SetReturnCode(1); // added so BoundsChecker would not report use of uninitialized variable
e3065973 2700
3ca6a5f0 2701 this->Destroy();
e3065973 2702} // CqueryDlg::OnCloseWindow()
108106cf 2703
108106cf 2704
94613352 2705void CqueryDlg::AppendToWhere(wxChar *s)
108106cf 2706{
3ca6a5f0
BP
2707 wxString whereStr = pQuerySqlWhereMtxt->GetValue();
2708 whereStr += s;
2709 pQuerySqlWhereMtxt->SetValue(whereStr);
108106cf
JS
2710} // CqueryDlg::AppendToWhere()
2711
2712
2713void CqueryDlg::ProcessAddBtn()
2714{
e70e8f4c
GT
2715 qryOp oper = (qryOp) pQueryOperatorChoice->GetSelection();
2716
2717 // Verify that eveything is filled in correctly
2718 if (pQueryCol2Choice->GetSelection() == 0) // "Value" is selected
2719 {
2720 // Verify that value 1 is filled in
f6bcfd97 2721 if (wxStrlen(pQueryValue1Txt->GetValue()) == 0)
e70e8f4c
GT
2722 {
2723 wxBell();
2724 pQueryValue1Txt->SetFocus();
2725 return;
2726 }
2727 // For the BETWEEN operator, value 2 must be filled in as well
2728 if (oper == qryOpBETWEEN &&
f6bcfd97 2729 wxStrlen(pQueryValue2Txt->GetValue()) == 0)
e70e8f4c
GT
2730 {
2731 wxBell();
2732 pQueryValue2Txt->SetFocus();
2733 return;
2734 }
2735 }
2736
2737 // Build the expression and append it to the where clause window
2738 wxString s = pQueryCol1Choice->GetStringSelection();
925e9792 2739
e70e8f4c 2740 if (pQueryNotCheck->GetValue() && (oper != qryOpEQ))
94613352 2741 s += wxT(" NOT");
925e9792 2742
e70e8f4c
GT
2743 switch(oper)
2744 {
2745 case qryOpEQ:
2746 if (pQueryNotCheck->GetValue()) // NOT box is checked
94613352 2747 s += wxT(" <>");
e70e8f4c 2748 else
94613352 2749 s += wxT(" =");
e70e8f4c
GT
2750 break;
2751 case qryOpLT:
94613352 2752 s += wxT(" <");
e70e8f4c
GT
2753 break;
2754 case qryOpGT:
94613352 2755 s += wxT(" >");
e70e8f4c
GT
2756 break;
2757 case qryOpLE:
94613352 2758 s += wxT(" <=");
e70e8f4c
GT
2759 break;
2760 case qryOpGE:
94613352 2761 s += wxT(" >=");
e70e8f4c
GT
2762 break;
2763 case qryOpBEGINS:
2764 case qryOpCONTAINS:
2765 case qryOpLIKE:
94613352 2766 s += wxT(" LIKE");
e70e8f4c
GT
2767 break;
2768 case qryOpBETWEEN:
94613352 2769 s += wxT(" BETWEEN");
e70e8f4c
GT
2770 break;
2771 }
2772
94613352 2773 s += wxT(" ");
e70e8f4c
GT
2774
2775 int col1Idx = pQueryCol1Choice->GetSelection();
2776
6d841efd 2777 bool quote = false;
e70e8f4c
GT
2778 if (colInf[col1Idx].sqlDataType == SQL_VARCHAR ||
2779 oper == qryOpBEGINS ||
2780 oper == qryOpCONTAINS ||
2781 oper == qryOpLIKE)
6d841efd 2782 quote = true;
e70e8f4c
GT
2783
2784 if (pQueryCol2Choice->GetSelection()) // Column name
2785 s += pQueryCol2Choice->GetStringSelection();
2786 else // Column 2 is a "value"
2787 {
2788 if (quote)
94613352 2789 s += wxT("'");
e70e8f4c 2790 if (oper == qryOpCONTAINS)
94613352 2791 s += wxT("%");
e70e8f4c
GT
2792 s += pQueryValue1Txt->GetValue();
2793 if (oper == qryOpCONTAINS || oper == qryOpBEGINS)
94613352 2794 s += wxT("%");
e70e8f4c 2795 if (quote)
94613352 2796 s += wxT("'");
e70e8f4c
GT
2797 }
2798
2799 if (oper == qryOpBETWEEN)
2800 {
94613352 2801 s += wxT(" AND ");
e70e8f4c 2802 if (quote)
94613352 2803 s += wxT("'");
e70e8f4c
GT
2804 s += pQueryValue2Txt->GetValue();
2805 if (quote)
94613352 2806 s += wxT("'");
e70e8f4c
GT
2807 }
2808
94613352 2809 AppendToWhere((wxChar*) (const wxChar*) s);
108106cf
JS
2810
2811} // CqueryDlg::ProcessAddBtn()
2812
2813
2814void CqueryDlg::ProcessCountBtn()
2815{
e70e8f4c
GT
2816 if (!ValidateWhereClause())
2817 return;
2818
3fe813a9 2819 if (!dbTable) // wxDbTable object needs to be created and opened
e70e8f4c 2820 {
c3677ad3 2821 dbTable = new wxDbTable(pDB, masterTableName, 0, (const wxString &)wxEmptyString,
925e9792 2822 !wxDB_QUERY_ONLY,
3fe813a9
GT
2823 wxGetApp().DbConnectInf->GetDefaultDir());
2824 if (!dbTable)
e70e8f4c 2825 {
94613352 2826 wxMessageBox(wxT("Memory allocation failed creating a wxDbTable object."),wxT("Error..."),wxOK | wxICON_EXCLAMATION);
e70e8f4c
GT
2827 return;
2828 }
2829 if (!dbTable->Open())
2830 {
2831 wxString tStr;
f21b2fd8 2832 tStr = wxT("ODBC error during Open()\n\n");
74de91cc 2833 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8 2834 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
e70e8f4c
GT
2835 return;
2836 }
2837 }
2838
2839 // Count() with WHERE clause
f6bcfd97 2840 wxString whereStr;
4c4a393f
GT
2841
2842 whereStr = pQuerySqlWhereMtxt->GetValue();
f6bcfd97 2843 dbTable->SetWhereClause(whereStr.c_str());
94613352 2844
e70e8f4c
GT
2845 ULONG whereCnt = dbTable->Count();
2846
2847 // Count() of all records in the table
da1e87c4 2848 dbTable->SetWhereClause(wxEmptyString);
e70e8f4c
GT
2849 ULONG totalCnt = dbTable->Count();
2850
2851 if (whereCnt > 0 || totalCnt == 0)
2852 {
2853 wxString tStr;
94613352
GT
2854 tStr.Printf(wxT("%lu of %lu records match the query criteria."),whereCnt,totalCnt);
2855 wxMessageBox(tStr,wxT("Notice..."),wxOK | wxICON_INFORMATION);
e70e8f4c
GT
2856 }
2857 else
2858 {
2859 wxString tStr;
94613352
GT
2860 tStr.Printf(wxT("%lu of %lu records match the query criteria.\n\nEither the criteria entered produced a result set\nwith no records, or there was a syntactical error\nin the clause you entered.\n\nPress the details button to see if any database errors were reported."),whereCnt,totalCnt);
2861 wxMessageBox(tStr,wxT("Notice..."),wxOK | wxICON_INFORMATION);
e70e8f4c
GT
2862 }
2863
2864 // After a wxMessageBox, the focus does not necessarily return to the
2865 // window which was the focus when the message box popped up, so return
2866 // focus to the Query dialog for certain
2867 SetFocus();
108106cf
JS
2868
2869} // CqueryDlg::ProcessCountBtn()
2870
2871
1fc5dd6f 2872bool CqueryDlg::ValidateWhereClause()
108106cf 2873{
e70e8f4c
GT
2874 wxString where = pQuerySqlWhereMtxt->GetValue();
2875
94613352 2876 if (where.Freq(wxT('(')) != where.Freq(wxT(')')))
e70e8f4c 2877 {
94613352 2878 wxMessageBox(wxT("There are mismatched parenthesis in the constructed where clause"),wxT("Error..."),wxOK | wxICON_EXCLAMATION);
6d841efd 2879 return(false);
e70e8f4c
GT
2880 }
2881 // After a wxMessageBox, the focus does not necessarily return to the
2882 // window which was the focus when the message box popped up, so return
2883 // focus to the Query dialog for certain
2884 SetFocus();
2885
6d841efd 2886 return(true);
108106cf
JS
2887
2888} // CqueryDlg::ValidateWhereClause()
3f755e2d 2889
da1e87c4
GT
2890#ifdef wxODBC_BLOB_SUPPORT
2891
2892BEGIN_EVENT_TABLE(CimageDlg, wxDialog)
2893 EVT_CLOSE(CimageDlg::OnCloseWindow)
2894END_EVENT_TABLE()
2895
2896CimageDlg::CimageDlg(wxWindow *parent, wxChar *pImageData, off_t iSize)
2897: wxDialog(parent, IMAGE_DIALOG, wxT("BLOB Image"), wxDefaultPosition, wxDefaultSize),
2898m_pImage(NULL),
2899m_pBmp(NULL),
2900m_pDisplayBmp(NULL)
2901{
2902 wxMemoryInputStream inStream(pImageData, iSize);
2903
2904 if(inStream.IsOk())
2905 {
2906 m_pImage = new wxImage(inStream, wxBITMAP_TYPE_ANY);
2907
2908 if(m_pImage->Ok())
2909 {
2910 m_pBmp = new wxBitmap(m_pImage);
2911 m_pDisplayBmp = new wxStaticBitmap(this, IMAGE_DIALOG_STATIC_BMP, *m_pBmp, wxPoint(5,5), wxDefaultSize);
2912
2913 SetSize(m_pBmp->GetWidth() + 10, m_pBmp->GetHeight() + 30);
2914 }
2915 }
2916}
2917
2918CimageDlg::~CimageDlg()
2919{
2920 if(m_pImage)
2921 delete m_pImage;
2922
2923 if(m_pBmp)
2924 delete m_pBmp;
3f755e2d 2925
da1e87c4
GT
2926 if(m_pDisplayBmp)
2927 delete m_pDisplayBmp;
2928}
2929
2930void CimageDlg::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
2931{
2932 GetParent()->SetFocus();
2933
2934 Show(false);
2935
2936 this->Destroy();
2937}
2938
2939#endif
3f755e2d 2940
3f030b48
GT
2941void DisplayDbDiagnostics(wxDb *pDb)
2942{
69a2b59d 2943 wxString s, t;
6d841efd 2944 bool comma;
69a2b59d 2945
9b12bd99
GT
2946 s = wxT("Diagnostics Output\n");
2947 s += langDBINF_DB_NAME;
69a2b59d 2948 s += pDb->dbInf.dbmsName;
74de91cc 2949 s += wxT("\n");
69a2b59d
GT
2950
2951 s += langDBINF_DB_VER;
2952 s += pDb->dbInf.dbmsVer;
74de91cc 2953 s += wxT("\n");
69a2b59d
GT
2954
2955 s += langDBINF_DRIVER_NAME;
2956 s += pDb->dbInf.driverName;
74de91cc 2957 s += wxT("\n");
69a2b59d
GT
2958
2959 s += langDBINF_DRIVER_ODBC_VER;
2960 s += pDb->dbInf.odbcVer;
74de91cc 2961 s += wxT("\n");
69a2b59d
GT
2962
2963 s += langDBINF_DRIVER_MGR_ODBC_VER;
2964 s += pDb->dbInf.drvMgrOdbcVer;
74de91cc 2965 s += wxT("\n");
69a2b59d
GT
2966
2967 s += langDBINF_DRIVER_VER;
2968 s += pDb->dbInf.driverVer;
74de91cc 2969 s += wxT("\n");
69a2b59d
GT
2970
2971 s += langDBINF_SERVER_NAME;
2972 s += pDb->dbInf.serverName;
74de91cc 2973 s += wxT("\n");
69a2b59d
GT
2974
2975 s += langDBINF_FILENAME;
2976 s += pDb->dbInf.databaseName;
74de91cc 2977 s += wxT("\n");
69a2b59d
GT
2978
2979 s += langDBINF_OUTER_JOINS;
2980 s += pDb->dbInf.outerJoins;
74de91cc 2981 s += wxT("\n");
69a2b59d
GT
2982
2983 s += langDBINF_STORED_PROC;
2984 s += pDb->dbInf.procedureSupport;
74de91cc 2985 s += wxT("\n");
69a2b59d
GT
2986
2987 if (pDb->dbInf.maxConnections)
74de91cc 2988 t.sprintf(wxT("%s%d\n"), langDBINF_MAX_HDBC, pDb->dbInf.maxConnections);
69a2b59d 2989 else
74de91cc 2990 t.sprintf(wxT("%s%s\n"), langDBINF_MAX_HDBC, langDBINF_UNLIMITED);
69a2b59d
GT
2991 s += t;
2992
2993 if (pDb->dbInf.maxStmts)
74de91cc 2994 t.sprintf(wxT("%s%d\n"), langDBINF_MAX_HSTMT, pDb->dbInf.maxStmts);
69a2b59d 2995 else
74de91cc 2996 t.sprintf(wxT("%s%s\n"), langDBINF_MAX_HSTMT, langDBINF_UNLIMITED);
69a2b59d
GT
2997 s += t;
2998
2999 s += langDBINF_API_LVL;
3000 switch(pDb->dbInf.apiConfLvl)
3001 {
3002 case SQL_OAC_NONE: s += langDBINF_NONE; break;
3003 case SQL_OAC_LEVEL1: s += langDBINF_LEVEL1; break;
3004 case SQL_OAC_LEVEL2: s += langDBINF_LEVEL2; break;
3005 }
74de91cc 3006 s += wxT("\n");
69a2b59d
GT
3007
3008 s += langDBINF_CLI_LVL;
3009 switch(pDb->dbInf.cliConfLvl)
3010 {
3011 case SQL_OSCC_NOT_COMPLIANT: s += langDBINF_NOT_COMPLIANT; break;
3012 case SQL_OSCC_COMPLIANT: s += langDBINF_COMPLIANT; break;
3013 }
74de91cc 3014 s += wxT("\n");
69a2b59d
GT
3015
3016 s += langDBINF_SQL_LVL;
3017 switch(pDb->dbInf.sqlConfLvl)
3018 {
3019 case SQL_OSC_MINIMUM: s += langDBINF_MIN_GRAMMAR; break;
3020 case SQL_OSC_CORE: s += langDBINF_CORE_GRAMMAR; break;
3021 case SQL_OSC_EXTENDED: s += langDBINF_EXT_GRAMMAR; break;
3022 }
74de91cc 3023 s += wxT("\n");
69a2b59d
GT
3024
3025 s += langDBINF_COMMIT_BEHAVIOR;
3026 switch(pDb->dbInf.cursorCommitBehavior)
3027 {
3028 case SQL_CB_DELETE: s += langDBINF_DELETE_CURSORS; break;
3029 case SQL_CB_CLOSE: s += langDBINF_CLOSE_CURSORS; break;
3030 case SQL_CB_PRESERVE: s += langDBINF_PRESERVE_CURSORS; break;
3031 }
74de91cc 3032 s += wxT("\n");
69a2b59d
GT
3033
3034 s += langDBINF_ROLLBACK_BEHAVIOR;
3035 switch(pDb->dbInf.cursorRollbackBehavior)
3036 {
3037 case SQL_CB_DELETE: s += langDBINF_DELETE_CURSORS; break;
3038 case SQL_CB_CLOSE: s += langDBINF_CLOSE_CURSORS; break;
3039 case SQL_CB_PRESERVE: s += langDBINF_PRESERVE_CURSORS; break;
3040 }
74de91cc 3041 s += wxT("\n");
69a2b59d
GT
3042
3043 s += langDBINF_SUPP_NOT_NULL;
3044 switch(pDb->dbInf.supportNotNullClause)
3045 {
3046 case SQL_NNC_NULL: s += langNO; break;
3047 case SQL_NNC_NON_NULL: s += langYES; break;
3048 }
74de91cc 3049 s += wxT("\n");
69a2b59d
GT
3050
3051 s += langDBINF_SUPP_IEF;
3052 s += pDb->dbInf.supportIEF;
74de91cc 3053 s += wxT("\n");
69a2b59d
GT
3054
3055 // DEFAULT setting for "Transaction Isolation Level"
3056 s += langDBINF_TXN_ISOLATION;
3057 switch(pDb->dbInf.txnIsolation)
3058 {
3059 case SQL_TXN_READ_UNCOMMITTED: s += langDBINF_READ_UNCOMMITTED; break;
3060 case SQL_TXN_READ_COMMITTED: s += langDBINF_READ_COMMITTED; break;
3061 case SQL_TXN_REPEATABLE_READ: s += langDBINF_REPEATABLE_READ; break;
3062 case SQL_TXN_SERIALIZABLE: s += langDBINF_SERIALIZABLE; break;
3f030b48 3063#ifdef ODBC_V20
69a2b59d
GT
3064 case SQL_TXN_VERSIONING: s += langDBINF_VERSIONING; break;
3065#endif
3066 }
74de91cc 3067 s += wxT("\n");
69a2b59d
GT
3068
3069 // CURRENT setting for "Transaction Isolation Level"
3070 long txnIsoLvl;
3071 s += langDBINF_TXN_ISOLATION_CURR;
3072 if (SQLGetConnectOption(pDb->GetHDBC(),SQL_TXN_ISOLATION,&txnIsoLvl) == SQL_SUCCESS)
3073 {
3074 switch(txnIsoLvl)
3075 {
3076 case SQL_TXN_READ_UNCOMMITTED: s += langDBINF_READ_UNCOMMITTED; break;
3077 case SQL_TXN_READ_COMMITTED: s += langDBINF_READ_COMMITTED; break;
3078 case SQL_TXN_REPEATABLE_READ: s += langDBINF_REPEATABLE_READ; break;
3079 case SQL_TXN_SERIALIZABLE: s += langDBINF_SERIALIZABLE; break;
3f030b48 3080#ifdef ODBC_V20
69a2b59d
GT
3081 case SQL_TXN_VERSIONING: s += langDBINF_VERSIONING; break;
3082#endif
3083 }
3084 }
74de91cc 3085 s += wxT("\n");
69a2b59d 3086
abfcca57
JJ
3087#ifdef __VMS__
3088#pragma message disable incboodep
3089#endif
6d841efd 3090 comma = false;
69a2b59d
GT
3091 s += langDBINF_TXN_ISOLATION_OPTS;
3092 if (pDb->dbInf.txnIsolationOptions & SQL_TXN_READ_UNCOMMITTED)
3093 {s += langDBINF_READ_UNCOMMITTED; comma++;}
3094 if (pDb->dbInf.txnIsolationOptions & SQL_TXN_READ_COMMITTED)
74de91cc 3095 {if (comma++) s += wxT(", "); s += langDBINF_READ_COMMITTED;}
69a2b59d 3096 if (pDb->dbInf.txnIsolationOptions & SQL_TXN_REPEATABLE_READ)
74de91cc 3097 {if (comma++) s += wxT(", "); s += langDBINF_REPEATABLE_READ;}
69a2b59d 3098 if (pDb->dbInf.txnIsolationOptions & SQL_TXN_SERIALIZABLE)
74de91cc 3099 {if (comma++) s += wxT(", "); s += langDBINF_SERIALIZABLE;}
3f030b48 3100#ifdef ODBC_V20
69a2b59d 3101 if (pDb->dbInf.txnIsolationOptions & SQL_TXN_VERSIONING)
74de91cc 3102 {if (comma++) s += wxT(", "); s += langDBINF_VERSIONING;}
69a2b59d 3103#endif
74de91cc 3104 s += wxT("\n");
69a2b59d 3105
6d841efd 3106 comma = false;
69a2b59d
GT
3107 s += langDBINF_FETCH_DIRS;
3108 if (pDb->dbInf.fetchDirections & SQL_FD_FETCH_NEXT)
3109 {s += langDBINF_NEXT; comma++;}
3110 if (pDb->dbInf.fetchDirections & SQL_FD_FETCH_PRIOR)
74de91cc 3111 {if (comma++) s += wxT(", "); s += langDBINF_PREV;}
69a2b59d 3112 if (pDb->dbInf.fetchDirections & SQL_FD_FETCH_FIRST)
74de91cc 3113 {if (comma++) s += wxT(", "); s += langDBINF_FIRST;}
69a2b59d 3114 if (pDb->dbInf.fetchDirections & SQL_FD_FETCH_LAST)
74de91cc 3115 {if (comma++) s += wxT(", "); s += langDBINF_LAST;}
69a2b59d 3116 if (pDb->dbInf.fetchDirections & SQL_FD_FETCH_ABSOLUTE)
74de91cc 3117 {if (comma++) s += wxT(", "); s += langDBINF_ABSOLUTE;}
69a2b59d 3118 if (pDb->dbInf.fetchDirections & SQL_FD_FETCH_RELATIVE)
74de91cc 3119 {if (comma++) s += wxT(", "); s += langDBINF_RELATIVE;}
3f030b48 3120#ifdef ODBC_V20
69a2b59d 3121 if (pDb->dbInf.fetchDirections & SQL_FD_FETCH_RESUME)
74de91cc 3122 {if (comma++) s += wxT(", "); s += langDBINF_RESUME;}
69a2b59d
GT
3123#endif
3124 if (pDb->dbInf.fetchDirections & SQL_FD_FETCH_BOOKMARK)
74de91cc
JS
3125 {if (comma++) s += wxT(", "); s += langDBINF_BOOKMARK;}
3126 s += wxT("\n");
69a2b59d 3127
6d841efd 3128 comma = false;
69a2b59d
GT
3129 s += langDBINF_LOCK_TYPES;
3130 if (pDb->dbInf.lockTypes & SQL_LCK_NO_CHANGE)
3131 {s += langDBINF_NO_CHANGE; comma++;}
3132 if (pDb->dbInf.lockTypes & SQL_LCK_EXCLUSIVE)
74de91cc 3133 {if (comma++) s += wxT(", "); s += langDBINF_EXCLUSIVE;}
69a2b59d 3134 if (pDb->dbInf.lockTypes & SQL_LCK_UNLOCK)
74de91cc
JS
3135 {if (comma++) s += wxT(", "); s += langDBINF_UNLOCK;}
3136 s += wxT("\n");
69a2b59d 3137
6d841efd 3138 comma = false;
69a2b59d
GT
3139 s += langDBINF_POS_OPERS;
3140 if (pDb->dbInf.posOperations & SQL_POS_POSITION)
3141 {s += langDBINF_POSITION; comma++;}
3142 if (pDb->dbInf.posOperations & SQL_POS_REFRESH)
74de91cc 3143 {if (comma++) s += wxT(", "); s += langDBINF_REFRESH;}
69a2b59d 3144 if (pDb->dbInf.posOperations & SQL_POS_UPDATE)
74de91cc 3145 {if (comma++) s += wxT(", "); s += langDBINF_UPD;}
69a2b59d 3146 if (pDb->dbInf.posOperations & SQL_POS_DELETE)
74de91cc 3147 {if (comma++) s += wxT(", "); s += langDBINF_DEL;}
69a2b59d 3148 if (pDb->dbInf.posOperations & SQL_POS_ADD)
74de91cc
JS
3149 {if (comma++) s += wxT(", "); s += langDBINF_ADD;}
3150 s += wxT("\n");
69a2b59d 3151
6d841efd 3152 comma = false;
69a2b59d
GT
3153 s += langDBINF_POS_STMTS;
3154 if (pDb->dbInf.posStmts & SQL_PS_POSITIONED_DELETE)
3155 {s += langDBINF_POS_DEL; comma++;}
3156 if (pDb->dbInf.posStmts & SQL_PS_POSITIONED_UPDATE)
74de91cc 3157 {if (comma++) s += wxT(", "); s += langDBINF_POS_UPD;}
69a2b59d 3158 if (pDb->dbInf.posStmts & SQL_PS_SELECT_FOR_UPDATE)
74de91cc
JS
3159 {if (comma++) s += wxT(", "); s += langDBINF_SELECT_FOR_UPD;}
3160 s += wxT("\n");
69a2b59d 3161
6d841efd 3162 comma = false;
69a2b59d
GT
3163 s += langDBINF_SCROLL_CONCURR;
3164 if (pDb->dbInf.scrollConcurrency & SQL_SCCO_READ_ONLY)
3165 {s += langDBINF_READ_ONLY; comma++;}
3166 if (pDb->dbInf.scrollConcurrency & SQL_SCCO_LOCK)
74de91cc 3167 {if (comma++) s += wxT(", "); s += langDBINF_LOCK;}
69a2b59d 3168 if (pDb->dbInf.scrollConcurrency & SQL_SCCO_OPT_ROWVER)
74de91cc 3169 {if (comma++) s += wxT(", "); s += langDBINF_OPT_ROWVER;}
69a2b59d 3170 if (pDb->dbInf.scrollConcurrency & SQL_SCCO_OPT_VALUES)
74de91cc
JS
3171 {if (comma++) s += wxT(", "); s += langDBINF_OPT_VALUES;}
3172 s += wxT("\n");
69a2b59d 3173
6d841efd 3174 comma = false;
69a2b59d
GT
3175 s += langDBINF_SCROLL_OPTS;
3176 if (pDb->dbInf.scrollOptions & SQL_SO_FORWARD_ONLY)
3177 {s += langDBINF_FWD_ONLY; comma++;}
3178 if (pDb->dbInf.scrollOptions & SQL_SO_STATIC)
74de91cc 3179 {if (comma++) s += wxT(", "); s += langDBINF_STATIC;}
69a2b59d 3180 if (pDb->dbInf.scrollOptions & SQL_SO_KEYSET_DRIVEN)
74de91cc 3181 {if (comma++) s += wxT(", "); s += langDBINF_KEYSET_DRIVEN;}
69a2b59d 3182 if (pDb->dbInf.scrollOptions & SQL_SO_DYNAMIC)
74de91cc 3183 {if (comma++) s += wxT(", "); s += langDBINF_DYNAMIC;}
69a2b59d 3184 if (pDb->dbInf.scrollOptions & SQL_SO_MIXED)
74de91cc
JS
3185 {if (comma++) s += wxT(", "); s += langDBINF_MIXED;}
3186 s += wxT("\n");
69a2b59d 3187
6d841efd 3188 comma = false;
69a2b59d
GT
3189 s += langDBINF_STATIC_SENS;
3190 if (pDb->dbInf.staticSensitivity & SQL_SS_ADDITIONS)
3191 {s += langDBINF_ADDITIONS; comma++;}
3192 if (pDb->dbInf.staticSensitivity & SQL_SS_DELETIONS)
74de91cc 3193 {if (comma++) s += wxT(", "); s += langDBINF_DELETIONS;}
69a2b59d 3194 if (pDb->dbInf.staticSensitivity & SQL_SS_UPDATES)
74de91cc
JS
3195 {if (comma++) s += wxT(", "); s += langDBINF_UPDATES;}
3196 s += wxT("\n");
abfcca57
JJ
3197#ifdef __VMS__
3198#pragma message enable incboodep
3199#endif
69a2b59d
GT
3200
3201
3202 s += langDBINF_TXN_CAPABLE;
3203 switch(pDb->dbInf.txnCapable)
3204 {
3205 case SQL_TC_NONE: s += langNO; break;
3206 case SQL_TC_DML: s += langDBINF_DML_ONLY; break;
da1e87c4
GT
3207 case SQL_TC_DDL_COMMIT: s += langDBINF_DDL_COMMIT; break;
3208 case SQL_TC_DDL_IGNORE: s += langDBINF_DDL_IGNORE; break;
69a2b59d
GT
3209 case SQL_TC_ALL: s += langDBINF_DDL_AND_DML; break;
3210 }
74de91cc 3211 s += wxT("\n");
69a2b59d 3212
74de91cc 3213 t.sprintf(wxT("%s%lu\n"), langDBINF_LOGIN_TIMEOUT, pDb->dbInf.loginTimeout);
69a2b59d
GT
3214 s += t;
3215
3216 // Oracle specific information
3217 if (pDb->Dbms() == dbmsORACLE)
3218 {
74de91cc 3219 s += wxT("\n");
69a2b59d 3220 s += langDBINF_ORACLE_BANNER;
74de91cc 3221 s += wxT("\n");
69a2b59d
GT
3222
3223 // Oracle cache hit ratio
3224 SDWORD cb;
3225 ULONG dbBlockGets;
74de91cc 3226 pDb->ExecSql(wxT("SELECT VALUE FROM V$SYSSTAT WHERE NAME = 'db block gets'"));
69a2b59d
GT
3227 pDb->GetNext();
3228 if (pDb->GetData(1, SQL_C_ULONG, &dbBlockGets, 0, &cb))
3229 {
74de91cc 3230 t.sprintf(wxT("%s: %lu\n"), langDBINF_DB_BLOCK_GETS, dbBlockGets);
69a2b59d
GT
3231 s += t;
3232 }
3233
3234 ULONG consistentGets;
74de91cc 3235 pDb->ExecSql(wxT("SELECT VALUE FROM V$SYSSTAT WHERE NAME = 'consistent gets'"));
69a2b59d
GT
3236 pDb->GetNext();
3237 if (pDb->GetData(1, SQL_C_ULONG, &consistentGets, 0, &cb))
3238 {
74de91cc 3239 t.sprintf(wxT("%s: %lu\n"), langDBINF_CONSISTENT_GETS, consistentGets);
69a2b59d
GT
3240 s += t;
3241 }
3242
3243 ULONG physReads;
74de91cc 3244 pDb->ExecSql(wxT("SELECT VALUE FROM V$SYSSTAT WHERE NAME = 'physical reads'"));
69a2b59d
GT
3245 pDb->GetNext();
3246 if (pDb->GetData(1, SQL_C_ULONG, &physReads, 0, &cb))
3247 {
74de91cc 3248 t.sprintf(wxT("%s: %lu\n"), langDBINF_PHYSICAL_READS, physReads);
69a2b59d
GT
3249 s += t;
3250 }
3251
3252 ULONG hitRatio = (ULONG)((1.00 - ((float)physReads / (float)(dbBlockGets + consistentGets))) * 100.00);
74de91cc 3253 t.sprintf(wxT("*** %s: %lu%%\n"), langDBINF_CACHE_HIT_RATIO, hitRatio);
69a2b59d
GT
3254 s += t;
3255
3256 // Tablespace information
74de91cc 3257 s += wxT("\n");
69a2b59d 3258 s += langDBINF_TABLESPACE_IO;
74de91cc 3259 s += wxT("\n");
69a2b59d 3260 ULONG physWrites;
da1e87c4 3261 char tablespaceName[256+1];
74de91cc 3262 pDb->ExecSql(wxT("SELECT NAME,PHYRDS,PHYWRTS FROM V$DATAFILE, V$FILESTAT WHERE V$DATAFILE.FILE# = V$FILESTAT.FILE#"));
69a2b59d
GT
3263 while (pDb->GetNext())
3264 {
da1e87c4
GT
3265 pDb->GetData(1, SQL_C_WXCHAR, tablespaceName, 256, &cb);
3266 pDb->GetData(2, SQL_C_ULONG, &physReads, 0, &cb);
3267 pDb->GetData(3, SQL_C_ULONG, &physWrites, 0, &cb);
74de91cc 3268 t.sprintf(wxT("%s\n\t%s: %lu\t%s: %lu\n"), tablespaceName,
69a2b59d
GT
3269 langDBINF_PHYSICAL_READS, physReads, langDBINF_PHYSICAL_WRITES, physWrites);
3270 s += t;
3271 }
3272
74de91cc 3273 s += wxT("\n");
69a2b59d 3274 }
3f030b48 3275
9b12bd99 3276 s += wxT("End of Diagnostics\n");
3f030b48
GT
3277 wxLogMessage(s);
3278
3279} // DisplayDbDiagnostics()
3280
9b12bd99 3281#if wxUSE_GRID
f21b2fd8
GT
3282
3283BEGIN_EVENT_TABLE(DbGridFrame, wxFrame)
3284 // EVT_CLOSE(DbGridFrame::OnCloseWindow)
3285END_EVENT_TABLE()
3286
3287
3288DbGridFrame::DbGridFrame(wxWindow *parent)
6d841efd 3289 : wxFrame (parent, wxID_ANY, wxT("Database Table"),
2f6c54eb 3290 wxDefaultPosition, wxSize(400, 325))
f21b2fd8 3291{
6d841efd 3292 initialized = false;
f21b2fd8
GT
3293}
3294
3295
9b12bd99 3296void DbGridFrame::OnCloseWindow(wxCloseEvent& WXUNUSED(event))
f21b2fd8
GT
3297{
3298 this->Destroy();
3299}
3300
3301
3302bool DbGridFrame::Initialize()
3303{
6d841efd 3304 wxGrid *grid = new wxGrid(this, wxID_ANY, wxDefaultPosition);
f21b2fd8
GT
3305
3306 grid->RegisterDataType(wxGRID_VALUE_DATETIME,
74de91cc 3307 new wxGridCellDateTimeRenderer(wxT("%d %b %Y")),
f21b2fd8
GT
3308 new wxGridCellTextEditor);
3309#ifdef CHOICEINT
3310 grid->RegisterDataType(wxGRID_VALUE_CHOICEINT,
3311 new wxGridCellEnumRenderer,
3312 new wxGridCellEnumEditor);
925e9792
WS
3313
3314 wxString NativeLangChoice( wxString::Format(wxT("%s:%s,%s,%s,%s,%s"),wxGRID_VALUE_CHOICEINT,
f21b2fd8
GT
3315 wxT("English"),
3316 wxT("French"),
3317 wxT("German"),
3318 wxT("Spanish"),
925e9792 3319 wxT("Other") ));
f21b2fd8
GT
3320#endif
3321
3322 // Columns must match the sequence specified in SetColDef() calls
3323 wxDbGridColInfo* cols =
3324 new wxDbGridColInfo( 0,wxGRID_VALUE_STRING,wxT("Name"),
3325 new wxDbGridColInfo( 1,wxGRID_VALUE_STRING,wxT("Address 1"),
3326 new wxDbGridColInfo( 2,wxGRID_VALUE_STRING,wxT("Address 2"),
3327 new wxDbGridColInfo( 3,wxGRID_VALUE_STRING,wxT("City"),
3328 new wxDbGridColInfo( 4,wxGRID_VALUE_STRING,wxT("State"),
3329 new wxDbGridColInfo( 5,wxGRID_VALUE_STRING,wxT("PostCode"),
3330 new wxDbGridColInfo( 6,wxGRID_VALUE_STRING,wxT("Country"),
3331 new wxDbGridColInfo( 7,wxGRID_VALUE_DBAUTO,wxT("Join Date"),
3332 new wxDbGridColInfo( 8,wxGRID_VALUE_BOOL, wxT("Developer"),
3333 new wxDbGridColInfo( 9,wxGRID_VALUE_NUMBER,wxT("Contributions"),
3334 new wxDbGridColInfo(10,wxGRID_VALUE_NUMBER,wxT("Lines Of Code"),
3335#ifdef CHOICEINT
3336 new wxDbGridColInfo(11,NativeLangChoice, wxT("Native Language"),NULL))))))))))));
925e9792 3337#else
f21b2fd8
GT
3338 new wxDbGridColInfo(11,wxGRID_VALUE_NUMBER,wxT("Native Language"),NULL))))))))))));
3339#endif
3340
3341 Ccontact *Contact = new Ccontact();
3342 //wxGetApp().Contact
3343
3344 if (!Contact)
3345 {
3346 wxMessageBox(wxT("Unable to instantiate an instance of Ccontact"), wxT("Error..."), wxOK | wxICON_EXCLAMATION);
6d841efd 3347 return false;
f21b2fd8
GT
3348 }
3349
3350 if (!Contact->Open())
3351 {
3352 if (Contact->GetDb()->TableExists(CONTACT_TABLE_NAME, Contact->GetDb()->GetUsername(),
3353 wxGetApp().DbConnectInf->GetDefaultDir()))
3354 {
3355 wxString tStr;
3356 tStr.Printf(wxT("Unable to open the table '%s'.\n\n"),CONTACT_TABLE_NAME);
74de91cc 3357 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8
GT
3358 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
3359 }
3360
6d841efd 3361 return false;
f21b2fd8
GT
3362 }
3363
3364 // Execute the following query using the cursor designated
3365 // for full table query
3366 Contact->SetRowMode(wxDbTable::WX_ROW_MODE_QUERY);
3367
3368 if (!Contact->Query())
3369 {
3370 wxString tStr;
3371 tStr = wxT("ODBC error during Query()\n\n");
74de91cc 3372 wxMessageBox(wxDbLogExtendedErrorMsg(tStr.c_str(),wxGetApp().Contact->GetDb(),__TFILE__,__LINE__),
f21b2fd8 3373 wxT("ODBC Error..."),wxOK | wxICON_EXCLAMATION);
6d841efd 3374 return false;
f21b2fd8
GT
3375 }
3376
3377 // No data has been read in from the database yet, so
3378 // we need to initialize the data members to valid values
3379 // so Fit() can correctly size the grid
3380 Contact->Initialize();
3381
6d841efd 3382 wxDbGridTableBase* db = new wxDbGridTableBase(Contact, cols, wxUSE_QUERY, true);
f21b2fd8
GT
3383
3384 delete cols;
3385
6d841efd 3386 grid->SetTable(db,true);
f21b2fd8 3387 grid->SetMargins(0, 0);
3f030b48 3388
f21b2fd8
GT
3389 grid->Fit();
3390 wxSize size = grid->GetSize();
3391 size.x += 10;
3392 size.y += 10;
3393 SetClientSize(size);
6d841efd
WS
3394 initialized = true;
3395 return true;
f21b2fd8 3396} // DbGridFrame::Initialize()
3f030b48 3397
9b12bd99 3398#endif // #if wxUSE_GRID
3f755e2d
GT
3399
3400/*
3401 TEST CODE FOR TESTING THE wxDbCreateDataSource() FUNCTION
3402
3403 int result = 0;
da1e87c4 3404 result = wxDbCreateDataSource(wxT("Microsoft Access Driver (*.mdb)"), wxT("GLT-TEST2"), wxT("GLT-Descrip"), false, wxEmptyString, this);
3f755e2d
GT
3405 if (!result)
3406 {
3407 // check for errors caused by ConfigDSN based functions
3408 DWORD retcode = 0;
3409 WORD cb;
3410 wxChar errMsg[500+1];
94613352 3411 errMsg[0] = wxT('\0');
3f755e2d 3412
da1e87c4 3413 SQLInstallerError(1, &retcode, errMsg, 500, &cb);
3f755e2d 3414
da1e87c4 3415 wxMessageBox(wxT("FAILED creating data source"), wxT("FAILED"));
3f755e2d
GT
3416 }
3417 else
da1e87c4 3418 wxMessageBox(wxT("SUCCEEDED creating data source"), wxT("SUCCESS"));
3f755e2d
GT
3419*/
3420
3421