]> git.saurik.com Git - wxWidgets.git/blame - include/wx/db.h
final cleanup of string conversion with null characters (hopefully :))
[wxWidgets.git] / include / wx / db.h
CommitLineData
108106cf 1///////////////////////////////////////////////////////////////////////////////
2b5f62a0 2// Name: wx/db.h
f6bcfd97
BP
3// Purpose: Header file wxDb class. The wxDb class represents a connection
4// to an ODBC data source. The wxDb class allows operations on the data
108106cf
JS
5// source such as opening and closing the data source.
6// Author: Doug Card
30a6d2d2 7// Modified by: George Tasker
3ca6a5f0 8// Bart Jourquin
a9f4558f 9// Mark Johnson, wxWindows@mj10777.de
ad2522ad 10// Mods: Dec, 1998:
a2115c88 11// -Added support for SQL statement logging and database cataloging
95ca6a20
GT
12// April, 1999
13// -Added QUERY_ONLY mode support to reduce default number of cursors
14// -Added additional SQL logging code
a2115c88 15// -Added DEBUG-ONLY tracking of Ctable objects to detect orphaned DB connections
95ca6a20
GT
16// -Set ODBC option to only read committed writes to the DB so all
17// databases operate the same in that respect
a2115c88 18//
108106cf
JS
19// Created: 9.96
20// RCS-ID: $Id$
21// Copyright: (c) 1996 Remstar International, Inc.
7e559cd8 22// Licence: wxWindows licence
108106cf
JS
23///////////////////////////////////////////////////////////////////////////////
24
2b5f62a0
VZ
25#ifndef _WX_DB_H_
26#define _WX_DB_H_
a2115c88 27
f6bcfd97 28
68379eaf 29// BJO 20000503: introduce new GetColumns members which are more database independant and
f6bcfd97
BP
30// return columns in the order they were created
31#define OLD_GETCOLUMNS 1
e2f4e132 32#define EXPERIMENTAL_WXDB_FUNCTIONS 1
f6bcfd97 33
a2115c88
GT
34#include "wx/version.h"
35
12028905 36#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
20987580 37 #pragma interface "db.h"
108106cf
JS
38#endif
39
16b52fa1
RR
40#include "wx/setup.h"
41
d4af841d
GT
42#include "wx/defs.h"
43#include "wx/string.h"
44
68379eaf 45#if defined(__VISUALC__)
2b5f62a0
VZ
46 // we need to include standard Windows headers but we can't include
47 // <windows.h> directly when using MFC because it includes it itself in a
48 // different manner
49 #if wxUSE_MFC
50 #include <afxwin.h>
51 #else // !wxUSE_MFC
52 #ifndef STRICT
53 #define STRICT 1
54 #endif
55
56 #include <windows.h>
57 #include "wx/msw/winundef.h"
58 #endif // wxUSE_MFC/!wxUSE_MFC
59
60 // If you use the wxDbCreateDataSource() function with MSW/VC6,
61 // you cannot use the iODBC headers, you must use the VC headers,
62 // plus the odbcinst.h header - gt Nov 2 2000
63 //
77ffb593 64 // Must add "odbccp32.lib" in \wx2\wxWidgets\src\makevc.env to the WINLIBS= line
2b5f62a0 65 //
e2f4e132
GT
66 #include "sql.h"
67 #include "sqlext.h"
68 #include "odbcinst.h"
f7556ff0 69#else
bfe5de86 70 #if defined(__WINDOWS__) && ( defined(HAVE_W32API_H) || defined(__BORLANDC__) )
190869b2
VS
71 #include <windows.h>
72 #include "wx/msw/winundef.h"
73 #endif
2b5f62a0 74 extern "C" {
0bdb08e7
VS
75 #if defined(wxUSE_BUILTIN_IODBC) && wxUSE_BUILTIN_IODBC
76 // Use the ones from the library
77 #include "wx/isql.h"
78 #include "wx/isqlext.h"
79 #else
f7556ff0
JS
80 #include <sql.h>
81 #include <sqlext.h>
0bdb08e7 82 #endif
2b5f62a0 83 }
aecca2c8
MB
84#endif
85
e4e45573
GT
86#if wxUSE_UNICODE
87#define SQL_C_WXCHAR SQL_C_WCHAR
88#else
89#define SQL_C_WXCHAR SQL_C_CHAR
90#endif
30a6d2d2 91
595b5c4e
MJ
92typedef float SFLOAT;
93typedef double SDOUBLE;
95ca6a20
GT
94typedef unsigned int UINT;
95#define ULONG UDWORD
30a6d2d2 96
c27be5db
JS
97// Not available in iODBC
98#ifndef __WXMSW__
99typedef UCHAR SQLTCHAR;
100#endif
101
30a6d2d2
GT
102#ifndef wxODBC_FWD_ONLY_CURSORS
103#define wxODBC_FWD_ONLY_CURSORS 1
104#endif
105
95ca6a20 106enum enumDummy {enumDum1};
7e616b10 107
b742792c 108#ifndef SQL_C_BOOLEAN
f3df29e3 109 #define SQL_C_BOOLEAN(datatype) (sizeof(datatype) == 1 ? SQL_C_UTINYINT : (sizeof(datatype) == 2 ? SQL_C_USHORT : SQL_C_ULONG))
b742792c 110#endif
20987580 111
b742792c 112#ifndef SQL_C_ENUM
f3df29e3 113 #define SQL_C_ENUM (sizeof(enumDummy) == 2 ? SQL_C_USHORT : SQL_C_ULONG)
b742792c 114#endif
20987580 115
f3df29e3
GT
116// NOTE: If SQL_C_BLOB is defined, and it is not SQL_C_BINARY, iODBC 2.x
117// may not function correctly. Likely best to use SQL_C_BINARY direct
b742792c 118#ifndef SQL_C_BLOB
f3df29e3
GT
119 #ifdef SQL_C_BINARY
120 #define SQL_C_BLOB SQL_C_BINARY
b742792c
GT
121 #endif
122#endif
7e616b10 123
f6bcfd97 124const int wxDB_PATH_MAX = 254;
95ca6a20 125
bb41dcbe
VS
126WXDLLIMPEXP_DATA_ODBC(extern wxChar const *) SQL_LOG_FILENAME;
127WXDLLIMPEXP_DATA_ODBC(extern wxChar const *) SQL_CATALOG_FILENAME;
108106cf 128
108106cf 129// Database Globals
95ca6a20 130const int DB_TYPE_NAME_LEN = 40;
eb3b9dda
GT
131const int DB_MAX_STATEMENT_LEN = 4096;
132const int DB_MAX_WHERE_CLAUSE_LEN = 2048;
95ca6a20
GT
133const int DB_MAX_ERROR_MSG_LEN = 512;
134const int DB_MAX_ERROR_HISTORY = 5;
135const int DB_MAX_TABLE_NAME_LEN = 128;
136const int DB_MAX_COLUMN_NAME_LEN = 128;
137
138const int DB_DATA_TYPE_VARCHAR = 1;
139const int DB_DATA_TYPE_INTEGER = 2;
140const int DB_DATA_TYPE_FLOAT = 3;
141const int DB_DATA_TYPE_DATE = 4;
b742792c 142const int DB_DATA_TYPE_BLOB = 5;
95ca6a20
GT
143
144const int DB_SELECT_KEYFIELDS = 1;
145const int DB_SELECT_WHERE = 2;
146const int DB_SELECT_MATCHING = 3;
147const int DB_SELECT_STATEMENT = 4;
148
149const int DB_UPD_KEYFIELDS = 1;
150const int DB_UPD_WHERE = 2;
151
152const int DB_DEL_KEYFIELDS = 1;
153const int DB_DEL_WHERE = 2;
154const int DB_DEL_MATCHING = 3;
155
156const int DB_WHERE_KEYFIELDS = 1;
157const int DB_WHERE_MATCHING = 2;
158
159const int DB_GRANT_SELECT = 1;
160const int DB_GRANT_INSERT = 2;
161const int DB_GRANT_UPDATE = 4;
162const int DB_GRANT_DELETE = 8;
163const int DB_GRANT_ALL = DB_GRANT_SELECT | DB_GRANT_INSERT | DB_GRANT_UPDATE | DB_GRANT_DELETE;
108106cf
JS
164
165// ODBC Error codes (derived from ODBC SqlState codes)
fdc03678 166enum wxODBC_ERRORS
108106cf 167{
95ca6a20
GT
168 DB_FAILURE = 0,
169 DB_SUCCESS = 1,
170 DB_ERR_NOT_IN_USE,
171 DB_ERR_GENERAL_WARNING, // SqlState = '01000'
172 DB_ERR_DISCONNECT_ERROR, // SqlState = '01002'
173 DB_ERR_DATA_TRUNCATED, // SqlState = '01004'
174 DB_ERR_PRIV_NOT_REVOKED, // SqlState = '01006'
175 DB_ERR_INVALID_CONN_STR_ATTR, // SqlState = '01S00'
176 DB_ERR_ERROR_IN_ROW, // SqlState = '01S01'
177 DB_ERR_OPTION_VALUE_CHANGED, // SqlState = '01S02'
178 DB_ERR_NO_ROWS_UPD_OR_DEL, // SqlState = '01S03'
179 DB_ERR_MULTI_ROWS_UPD_OR_DEL, // SqlState = '01S04'
180 DB_ERR_WRONG_NO_OF_PARAMS, // SqlState = '07001'
181 DB_ERR_DATA_TYPE_ATTR_VIOL, // SqlState = '07006'
182 DB_ERR_UNABLE_TO_CONNECT, // SqlState = '08001'
183 DB_ERR_CONNECTION_IN_USE, // SqlState = '08002'
184 DB_ERR_CONNECTION_NOT_OPEN, // SqlState = '08003'
185 DB_ERR_REJECTED_CONNECTION, // SqlState = '08004'
186 DB_ERR_CONN_FAIL_IN_TRANS, // SqlState = '08007'
187 DB_ERR_COMM_LINK_FAILURE, // SqlState = '08S01'
188 DB_ERR_INSERT_VALUE_LIST_MISMATCH, // SqlState = '21S01'
189 DB_ERR_DERIVED_TABLE_MISMATCH, // SqlState = '21S02'
190 DB_ERR_STRING_RIGHT_TRUNC, // SqlState = '22001'
191 DB_ERR_NUMERIC_VALUE_OUT_OF_RNG, // SqlState = '22003'
192 DB_ERR_ERROR_IN_ASSIGNMENT, // SqlState = '22005'
193 DB_ERR_DATETIME_FLD_OVERFLOW, // SqlState = '22008'
194 DB_ERR_DIVIDE_BY_ZERO, // SqlState = '22012'
195 DB_ERR_STR_DATA_LENGTH_MISMATCH, // SqlState = '22026'
196 DB_ERR_INTEGRITY_CONSTRAINT_VIOL, // SqlState = '23000'
197 DB_ERR_INVALID_CURSOR_STATE, // SqlState = '24000'
198 DB_ERR_INVALID_TRANS_STATE, // SqlState = '25000'
199 DB_ERR_INVALID_AUTH_SPEC, // SqlState = '28000'
200 DB_ERR_INVALID_CURSOR_NAME, // SqlState = '34000'
201 DB_ERR_SYNTAX_ERROR_OR_ACCESS_VIOL, // SqlState = '37000'
202 DB_ERR_DUPLICATE_CURSOR_NAME, // SqlState = '3C000'
203 DB_ERR_SERIALIZATION_FAILURE, // SqlState = '40001'
204 DB_ERR_SYNTAX_ERROR_OR_ACCESS_VIOL2, // SqlState = '42000'
205 DB_ERR_OPERATION_ABORTED, // SqlState = '70100'
206 DB_ERR_UNSUPPORTED_FUNCTION, // SqlState = 'IM001'
207 DB_ERR_NO_DATA_SOURCE, // SqlState = 'IM002'
208 DB_ERR_DRIVER_LOAD_ERROR, // SqlState = 'IM003'
209 DB_ERR_SQLALLOCENV_FAILED, // SqlState = 'IM004'
210 DB_ERR_SQLALLOCCONNECT_FAILED, // SqlState = 'IM005'
211 DB_ERR_SQLSETCONNECTOPTION_FAILED, // SqlState = 'IM006'
212 DB_ERR_NO_DATA_SOURCE_DLG_PROHIB, // SqlState = 'IM007'
213 DB_ERR_DIALOG_FAILED, // SqlState = 'IM008'
214 DB_ERR_UNABLE_TO_LOAD_TRANSLATION_DLL, // SqlState = 'IM009'
215 DB_ERR_DATA_SOURCE_NAME_TOO_LONG, // SqlState = 'IM010'
216 DB_ERR_DRIVER_NAME_TOO_LONG, // SqlState = 'IM011'
217 DB_ERR_DRIVER_KEYWORD_SYNTAX_ERROR, // SqlState = 'IM012'
218 DB_ERR_TRACE_FILE_ERROR, // SqlState = 'IM013'
219 DB_ERR_TABLE_OR_VIEW_ALREADY_EXISTS, // SqlState = 'S0001'
220 DB_ERR_TABLE_NOT_FOUND, // SqlState = 'S0002'
221 DB_ERR_INDEX_ALREADY_EXISTS, // SqlState = 'S0011'
222 DB_ERR_INDEX_NOT_FOUND, // SqlState = 'S0012'
223 DB_ERR_COLUMN_ALREADY_EXISTS, // SqlState = 'S0021'
224 DB_ERR_COLUMN_NOT_FOUND, // SqlState = 'S0022'
225 DB_ERR_NO_DEFAULT_FOR_COLUMN, // SqlState = 'S0023'
226 DB_ERR_GENERAL_ERROR, // SqlState = 'S1000'
227 DB_ERR_MEMORY_ALLOCATION_FAILURE, // SqlState = 'S1001'
228 DB_ERR_INVALID_COLUMN_NUMBER, // SqlState = 'S1002'
229 DB_ERR_PROGRAM_TYPE_OUT_OF_RANGE, // SqlState = 'S1003'
230 DB_ERR_SQL_DATA_TYPE_OUT_OF_RANGE, // SqlState = 'S1004'
231 DB_ERR_OPERATION_CANCELLED, // SqlState = 'S1008'
232 DB_ERR_INVALID_ARGUMENT_VALUE, // SqlState = 'S1009'
233 DB_ERR_FUNCTION_SEQUENCE_ERROR, // SqlState = 'S1010'
234 DB_ERR_OPERATION_INVALID_AT_THIS_TIME, // SqlState = 'S1011'
235 DB_ERR_INVALID_TRANS_OPERATION_CODE, // SqlState = 'S1012'
236 DB_ERR_NO_CURSOR_NAME_AVAIL, // SqlState = 'S1015'
237 DB_ERR_INVALID_STR_OR_BUF_LEN, // SqlState = 'S1090'
238 DB_ERR_DESCRIPTOR_TYPE_OUT_OF_RANGE, // SqlState = 'S1091'
239 DB_ERR_OPTION_TYPE_OUT_OF_RANGE, // SqlState = 'S1092'
240 DB_ERR_INVALID_PARAM_NO, // SqlState = 'S1093'
241 DB_ERR_INVALID_SCALE_VALUE, // SqlState = 'S1094'
242 DB_ERR_FUNCTION_TYPE_OUT_OF_RANGE, // SqlState = 'S1095'
243 DB_ERR_INF_TYPE_OUT_OF_RANGE, // SqlState = 'S1096'
244 DB_ERR_COLUMN_TYPE_OUT_OF_RANGE, // SqlState = 'S1097'
245 DB_ERR_SCOPE_TYPE_OUT_OF_RANGE, // SqlState = 'S1098'
246 DB_ERR_NULLABLE_TYPE_OUT_OF_RANGE, // SqlState = 'S1099'
247 DB_ERR_UNIQUENESS_OPTION_TYPE_OUT_OF_RANGE, // SqlState = 'S1100'
248 DB_ERR_ACCURACY_OPTION_TYPE_OUT_OF_RANGE, // SqlState = 'S1101'
249 DB_ERR_DIRECTION_OPTION_OUT_OF_RANGE, // SqlState = 'S1103'
250 DB_ERR_INVALID_PRECISION_VALUE, // SqlState = 'S1104'
251 DB_ERR_INVALID_PARAM_TYPE, // SqlState = 'S1105'
252 DB_ERR_FETCH_TYPE_OUT_OF_RANGE, // SqlState = 'S1106'
253 DB_ERR_ROW_VALUE_OUT_OF_RANGE, // SqlState = 'S1107'
254 DB_ERR_CONCURRENCY_OPTION_OUT_OF_RANGE, // SqlState = 'S1108'
255 DB_ERR_INVALID_CURSOR_POSITION, // SqlState = 'S1109'
256 DB_ERR_INVALID_DRIVER_COMPLETION, // SqlState = 'S1110'
257 DB_ERR_INVALID_BOOKMARK_VALUE, // SqlState = 'S1111'
258 DB_ERR_DRIVER_NOT_CAPABLE, // SqlState = 'S1C00'
259 DB_ERR_TIMEOUT_EXPIRED // SqlState = 'S1T00'
108106cf
JS
260};
261
5cf34cf0 262#ifndef MAXNAME
f3df29e3 263 #define MAXNAME 31
5cf34cf0
GT
264#endif
265
266#ifndef SQL_MAX_AUTHSTR_LEN
f3df29e3
GT
267 // There does not seem to be a standard for this, so I am
268 // defaulting to the value that MS uses
269 #define SQL_MAX_AUTHSTR_LEN MAXNAME
5cf34cf0 270#endif
95ca6a20 271
0907ea9c
GT
272#ifndef SQL_MAX_CONNECTSTR_LEN
273 // There does not seem to be a standard for this, so I am
274 // defaulting to the value that MS recommends
275 #define SQL_MAX_CONNECTSTR_LEN 1024
276#endif
277
278
bb41dcbe 279class WXDLLIMPEXP_ODBC wxDbConnectInf
108106cf 280{
5cf34cf0
GT
281 private:
282 bool freeHenvOnDestroy;
0907ea9c 283 bool useConnectionStr;
a2115c88 284
5cf34cf0 285 public:
2f971924
GT
286 HENV Henv;
287 wxChar Dsn[SQL_MAX_DSN_LENGTH+1]; // Data Source Name
288 wxChar Uid[SQL_MAX_USER_NAME_LEN+1]; // User ID
289 wxChar AuthStr[SQL_MAX_AUTHSTR_LEN+1]; // Authorization string (password)
0907ea9c 290 wxChar ConnectionStr[SQL_MAX_CONNECTSTR_LEN+1]; // Connection string (password)
5cf34cf0
GT
291
292 wxString Description; // Not sure what the max length is
293 wxString FileType; // Not sure what the max length is
294
295 // Optionals needed for some databases like dBase
296 wxString DefaultDir; // Directory that db file resides in
297
298 public:
299
300 wxDbConnectInf();
68379eaf
WS
301 wxDbConnectInf(HENV henv, const wxString &dsn, const wxString &userID=wxEmptyString,
302 const wxString &password=wxEmptyString, const wxString &defaultDir=wxEmptyString,
da99271d 303 const wxString &description=wxEmptyString, const wxString &fileType=wxEmptyString);
5cf34cf0
GT
304
305 ~wxDbConnectInf();
306
307 bool Initialize();
308
309 bool AllocHenv();
310 void FreeHenv();
311
312 // Accessors
6a71ee86 313 const HENV &GetHenv() { return Henv; };
5cf34cf0
GT
314
315 const wxChar *GetDsn() { return Dsn; };
316
317 const wxChar *GetUid() { return Uid; };
318 const wxChar *GetUserID() { return Uid; };
319
320 const wxChar *GetAuthStr() { return AuthStr; };
321 const wxChar *GetPassword() { return AuthStr; };
322
0907ea9c
GT
323 const wxChar *GetConnectionStr() { return ConnectionStr; };
324 bool UseConnectionStr() { return useConnectionStr; };
325
5cf34cf0
GT
326 const wxChar *GetDescription() { return Description; };
327 const wxChar *GetFileType() { return FileType; };
328 const wxChar *GetDefaultDir() { return DefaultDir; };
329
330 void SetHenv(const HENV henv) { Henv = henv; };
331
332 void SetDsn(const wxString &dsn);
333
334 void SetUserID(const wxString &userID);
335 void SetUid(const wxString &uid) { SetUserID(uid); };
336
337 void SetPassword(const wxString &password);
338 void SetAuthStr(const wxString &authstr) { SetPassword(authstr); };
339
0907ea9c
GT
340 void SetConnectionStr(const wxString &connectStr);
341
5cf34cf0
GT
342 void SetDescription(const wxString &desc) { Description = desc; };
343 void SetFileType(const wxString &fileType) { FileType = fileType; };
344 void SetDefaultDir(const wxString &defDir) { DefaultDir = defDir; };
345}; // class wxDbConnectInf
a2115c88 346
108106cf 347
bb41dcbe 348struct WXDLLIMPEXP_ODBC wxDbSqlTypeInfo
108106cf 349{
4fdae997 350 wxString TypeName;
02cf6fdd 351 SWORD FsqlType;
4fdae997
GT
352 long Precision;
353 short CaseSensitive;
4fdae997 354 short MaximumScale;
fdc03678 355};
108106cf 356
95ca6a20 357
bb41dcbe 358class WXDLLIMPEXP_ODBC wxDbColFor
30a6d2d2 359{
95ca6a20 360public:
5cf34cf0
GT
361 wxString s_Field; // Formated String for Output
362 wxString s_Format[7]; // Formated Objects - TIMESTAMP has the biggest (7)
3ca6a5f0
BP
363 wxString s_Amount[7]; // Formated Objects - amount of things that can be formatted
364 int i_Amount[7]; // Formated Objects - TT MM YYYY HH MM SS m
5cf34cf0
GT
365 int i_Nation; // 0 = timestamp , 1=EU, 2=UK, 3=International, 4=US
366 int i_dbDataType; // conversion of the 'sqlDataType' to the generic data type used by these classes
95ca6a20
GT
367 SWORD i_sqlDataType;
368
f6bcfd97 369 wxDbColFor();
1b941f2d 370 ~wxDbColFor(){}
595b5c4e 371
6a71ee86 372 void Initialize();
e4e45573 373 int Format(int Nation, int dbDataType, SWORD sqlDataType, short columnLength, short decimalDigits);
30a6d2d2
GT
374};
375
95ca6a20 376
bb41dcbe 377class WXDLLIMPEXP_ODBC wxDbColInf
108106cf
JS
378{
379public:
4fdae997
GT
380 wxChar catalog[128+1];
381 wxChar schema[128+1];
382 wxChar tableName[DB_MAX_TABLE_NAME_LEN+1];
383 wxChar colName[DB_MAX_COLUMN_NAME_LEN+1];
95ca6a20 384 SWORD sqlDataType;
4fdae997 385 wxChar typeName[128+1];
e4e45573
GT
386 SWORD columnLength;
387 SWORD bufferSize;
95ca6a20
GT
388 short decimalDigits;
389 short numPrecRadix;
390 short nullable;
4fdae997 391 wxChar remarks[254+1];
95ca6a20 392 int dbDataType; // conversion of the 'sqlDataType' to the generic data type used by these classes
30a6d2d2
GT
393 // mj10777.19991224 : new
394 int PkCol; // Primary key column 0=No; 1= First Key, 2 = Second Key etc.
4fdae997 395 wxChar PkTableName[DB_MAX_TABLE_NAME_LEN+1]; // Tables that use this PKey as a FKey
30a6d2d2 396 int FkCol; // Foreign key column 0=No; 1= First Key, 2 = Second Key etc.
4fdae997 397 wxChar FkTableName[DB_MAX_TABLE_NAME_LEN+1]; // Foreign key table name
f6bcfd97 398 wxDbColFor *pColFor; // How should this columns be formatted
3ca6a5f0
BP
399
400 wxDbColInf();
401 ~wxDbColInf();
da99271d
GT
402
403 bool Initialize();
30a6d2d2
GT
404};
405
95ca6a20 406
bb41dcbe 407class WXDLLIMPEXP_ODBC wxDbTableInf // Description of a Table
95ca6a20 408{
30a6d2d2 409public:
4fdae997
GT
410 wxChar tableName[DB_MAX_TABLE_NAME_LEN+1];
411 wxChar tableType[254+1]; // "TABLE" or "SYSTEM TABLE" etc.
412 wxChar tableRemarks[254+1];
02cf6fdd 413 UWORD numCols; // How many Columns does this Table have: GetColumnCount(..);
f6bcfd97 414 wxDbColInf *pColInf; // pColInf = NULL ; User can later call GetColumns(..);
da99271d 415
3ca6a5f0
BP
416 wxDbTableInf();
417 ~wxDbTableInf();
da99271d
GT
418
419 bool Initialize();
30a6d2d2
GT
420};
421
95ca6a20 422
bb41dcbe 423class WXDLLIMPEXP_ODBC wxDbInf // Description of a Database
95ca6a20 424{
30a6d2d2 425public:
4fdae997
GT
426 wxChar catalog[128+1];
427 wxChar schema[128+1];
f6bcfd97
BP
428 int numTables; // How many tables does this database have
429 wxDbTableInf *pTableInf; // pTableInf = new wxDbTableInf[numTables];
3ca6a5f0
BP
430
431 wxDbInf();
432 ~wxDbInf();
6a71ee86 433
da99271d 434 bool Initialize();
108106cf
JS
435};
436
95ca6a20 437
f6bcfd97 438enum wxDbSqlLogState
1fc5dd6f 439{
95ca6a20
GT
440 sqlLogOFF,
441 sqlLogON
1fc5dd6f
JS
442};
443
95ca6a20 444// These are the databases currently tested and working with these classes
f6bcfd97 445// See the comments in wxDb::Dbms() for exceptions/issues with
95ca6a20 446// each of these database engines
fdc03678 447enum wxDBMS
a2115c88 448{
95ca6a20
GT
449 dbmsUNIDENTIFIED,
450 dbmsORACLE,
451 dbmsSYBASE_ASA, // Adaptive Server Anywhere
452 dbmsSYBASE_ASE, // Adaptive Server Enterprise
453 dbmsMS_SQL_SERVER,
454 dbmsMY_SQL,
455 dbmsPOSTGRES,
456 dbmsACCESS,
457 dbmsDBASE,
f6bcfd97 458 dbmsINFORMIX,
e2f4e132 459 dbmsVIRTUOSO,
d8a0a1c9 460 dbmsDB2,
1b12ab16 461 dbmsINTERBASE,
9f4de2dc
JS
462 dbmsPERVASIVE_SQL,
463 dbmsXBASE_SEQUITER
a2115c88
GT
464};
465
95ca6a20 466
f6bcfd97 467// The wxDb::errorList is copied to this variable when the wxDb object
a2115c88 468// is closed. This way, the error list is still available after the
595b5c4e 469// database object is closed. This is necessary if the database
a2115c88 470// connection fails so the calling application can show the operator
f6bcfd97
BP
471// why the connection failed. Note: as each wxDb object is closed, it
472// will overwrite the errors of the previously destroyed wxDb object in
a2115c88 473// this variable.
8a77c0d7 474
8b1c2cf0 475WXDLLIMPEXP_DATA_ODBC(extern wxChar)
886dd7d2 476 DBerrorList[DB_MAX_ERROR_HISTORY][DB_MAX_ERROR_MSG_LEN];
a2115c88 477
95ca6a20 478
bb41dcbe 479class WXDLLIMPEXP_ODBC wxDb
108106cf
JS
480{
481private:
95ca6a20 482 bool dbIsOpen;
20987580 483 bool dbIsCached; // Was connection created by caching functions
0907ea9c 484 bool dbOpenedWithConnectionString; // Was the database connection opened with a connection string
4fdae997
GT
485 wxString dsn; // Data source name
486 wxString uid; // User ID
487 wxString authStr; // Authorization string (password)
0907ea9c
GT
488 wxString inConnectionStr; // Connection string used to connect to the database
489 wxString outConnectionStr;// Connection string returned by the database when a connection is successfully opened
95ca6a20 490 FILE *fpSqlLog; // Sql Log file pointer
f6bcfd97 491 wxDbSqlLogState sqlLogState; // On or Off
95ca6a20 492 bool fwdOnlyCursors;
e2f4e132 493 wxDBMS dbmsType; // Type of datasource - i.e. Oracle, dBase, SQLServer, etc
95ca6a20
GT
494
495 // Private member functions
68379eaf 496 bool getDbInfo(bool failOnDataTypeUnsupported=true);
f6bcfd97 497 bool getDataTypeInfo(SWORD fSqlType, wxDbSqlTypeInfo &structSQLTypeInfo);
95ca6a20 498 bool setConnectionOptions(void);
4fdae997 499 void logError(const wxString &errMsg, const wxString &SQLState);
4fdae997 500 const wxChar *convertUserID(const wxChar *userID, wxString &UserID);
da99271d 501 void initialize();
68379eaf 502 bool open(bool failOnDataTypeUnsupported=true);
4fdae997 503
f6bcfd97
BP
504#if !wxODBC_BACKWARD_COMPATABILITY
505 // ODBC handles
506 HENV henv; // ODBC Environment handle
507 HDBC hdbc; // ODBC DB Connection handle
508 HSTMT hstmt; // ODBC Statement handle
509
510 //Error reporting mode
511 bool silent;
512
513 // Number of Ctable objects connected to this db object. FOR INTERNAL USE ONLY!!!
514 unsigned int nTables;
515
516 // Information about logical data types VARCHAR, INTEGER, FLOAT and DATE.
3ca6a5f0 517 //
f6bcfd97
BP
518 // This information is obtained from the ODBC driver by use of the
519 // SQLGetTypeInfo() function. The key piece of information is the
520 // type name the data source uses for each logical data type.
521 // e.g. VARCHAR; Oracle calls it VARCHAR2.
522 wxDbSqlTypeInfo typeInfVarchar;
523 wxDbSqlTypeInfo typeInfInteger;
524 wxDbSqlTypeInfo typeInfFloat;
525 wxDbSqlTypeInfo typeInfDate;
b742792c 526 wxDbSqlTypeInfo typeInfBlob;
f6bcfd97 527#endif
a3439c7d 528
108106cf 529public:
b742792c 530
20987580
GT
531 void setCached(bool cached) { dbIsCached = cached; }; // This function must only be called by wxDbGetConnection() and wxDbCloseConnections!!!
532 bool IsCached() { return dbIsCached; };
533
b742792c
GT
534 bool GetDataTypeInfo(SWORD fSqlType, wxDbSqlTypeInfo &structSQLTypeInfo)
535 { return getDataTypeInfo(fSqlType, structSQLTypeInfo); }
536
f6bcfd97
BP
537#if wxODBC_BACKWARD_COMPATABILITY
538 // ODBC handles
539 HENV henv; // ODBC Environment handle
540 HDBC hdbc; // ODBC DB Connection handle
541 HSTMT hstmt; // ODBC Statement handle
542
543 //Error reporting mode
544 bool silent;
545
546 // Number of Ctable objects connected to this db object. FOR INTERNAL USE ONLY!!!
547 unsigned int nTables;
548#endif
549
95ca6a20
GT
550 // The following structure contains database information gathered from the
551 // datasource when the datasource is first opened.
552 struct
553 {
4fdae997
GT
554 wxChar dbmsName[40]; // Name of the dbms product
555 wxChar dbmsVer[64]; // Version # of the dbms product
556 wxChar driverName[40]; // Driver name
557 wxChar odbcVer[60]; // ODBC version of the driver
558 wxChar drvMgrOdbcVer[60]; // ODBC version of the driver manager
559 wxChar driverVer[60]; // Driver version
560 wxChar serverName[80]; // Server Name, typically a connect string
561 wxChar databaseName[128]; // Database filename
562 wxChar outerJoins[2]; // Indicates whether the data source supports outer joins
563 wxChar procedureSupport[2]; // Indicates whether the data source supports stored procedures
564 wxChar accessibleTables[2]; // Indicates whether the data source only reports accessible tables in SQLTables.
95ca6a20
GT
565 UWORD maxConnections; // Maximum # of connections the data source supports
566 UWORD maxStmts; // Maximum # of HSTMTs per HDBC
567 UWORD apiConfLvl; // ODBC API conformance level
568 UWORD cliConfLvl; // Indicates whether the data source is SAG compliant
569 UWORD sqlConfLvl; // SQL conformance level
570 UWORD cursorCommitBehavior; // Indicates how cursors are affected by a db commit
571 UWORD cursorRollbackBehavior; // Indicates how cursors are affected by a db rollback
572 UWORD supportNotNullClause; // Indicates if data source supports NOT NULL clause
4fdae997 573 wxChar supportIEF[2]; // Integrity Enhancement Facility (Referential Integrity)
95ca6a20
GT
574 UDWORD txnIsolation; // Default transaction isolation level supported by the driver
575 UDWORD txnIsolationOptions; // Transaction isolation level options available
576 UDWORD fetchDirections; // Fetch directions supported
577 UDWORD lockTypes; // Lock types supported in SQLSetPos
578 UDWORD posOperations; // Position operations supported in SQLSetPos
579 UDWORD posStmts; // Position statements supported
580 UDWORD scrollConcurrency; // Concurrency control options supported for scrollable cursors
581 UDWORD scrollOptions; // Scroll Options supported for scrollable cursors
582 UDWORD staticSensitivity; // Indicates if additions, deletions and updates can be detected
583 UWORD txnCapable; // Indicates if the data source supports transactions
584 UDWORD loginTimeout; // Number seconds to wait for a login request
585 } dbInf;
586
95ca6a20 587 // ODBC Error Inf.
95ca6a20 588 SWORD cbErrorMsg;
95ca6a20 589 int DB_STATUS;
f6bcfd97
BP
590 wxChar errorList[DB_MAX_ERROR_HISTORY][DB_MAX_ERROR_MSG_LEN];
591 wxChar errorMsg[SQL_MAX_MESSAGE_LENGTH];
592 SDWORD nativeError;
593 wxChar sqlState[20];
95ca6a20 594
f6bcfd97
BP
595#if wxODBC_BACKWARD_COMPATABILITY
596 // Information about logical data types VARCHAR, INTEGER, FLOAT and DATE.
3ca6a5f0 597 //
f6bcfd97
BP
598 // This information is obtained from the ODBC driver by use of the
599 // SQLGetTypeInfo() function. The key piece of information is the
95ca6a20
GT
600 // type name the data source uses for each logical data type.
601 // e.g. VARCHAR; Oracle calls it VARCHAR2.
f6bcfd97
BP
602 wxDbSqlTypeInfo typeInfVarchar;
603 wxDbSqlTypeInfo typeInfInteger;
604 wxDbSqlTypeInfo typeInfFloat;
605 wxDbSqlTypeInfo typeInfDate;
b742792c 606 wxDbSqlTypeInfo typeInfBlob;
f6bcfd97 607#endif
595b5c4e 608
95ca6a20 609 // Public member functions
6a71ee86 610 wxDb(const HENV &aHenv, bool FwdOnlyCursors=(bool)wxODBC_FWD_ONLY_CURSORS);
20987580 611 ~wxDb();
5cf34cf0 612
e25cdb86 613 // Data Source Name, User ID, Password and whether open should fail on data type not supported
68379eaf
WS
614 bool Open(const wxString& inConnectStr, bool failOnDataTypeUnsupported=true);
615 bool Open(const wxString &Dsn, const wxString &Uid, const wxString &AuthStr, bool failOnDataTypeUnsupported=true);
616 bool Open(wxDbConnectInf *dbConnectInf, bool failOnDataTypeUnsupported=true);
e2f4e132 617 bool Open(wxDb *copyDb); // pointer to a wxDb whose connection info should be copied rather than re-queried
95ca6a20
GT
618 void Close(void);
619 bool CommitTrans(void);
620 bool RollbackTrans(void);
621 bool DispAllErrors(HENV aHenv, HDBC aHdbc = SQL_NULL_HDBC, HSTMT aHstmt = SQL_NULL_HSTMT);
622 bool GetNextError(HENV aHenv, HDBC aHdbc = SQL_NULL_HDBC, HSTMT aHstmt = SQL_NULL_HSTMT);
623 void DispNextError(void);
68379eaf 624 bool CreateView(const wxString &viewName, const wxString &colList, const wxString &pSqlStmt, bool attemptDrop=true);
4fdae997
GT
625 bool DropView(const wxString &viewName);
626 bool ExecSql(const wxString &pSqlStmt);
95ca6a20
GT
627 bool GetNext(void);
628 bool GetData(UWORD colNo, SWORD cType, PTR pData, SDWORD maxLen, SDWORD FAR *cbReturned);
4fdae997
GT
629 bool Grant(int privileges, const wxString &tableName, const wxString &userList = wxT("PUBLIC"));
630 int TranslateSqlState(const wxString &SQLState);
631 wxDbInf *GetCatalog(const wxChar *userID=NULL);
632 bool Catalog(const wxChar *userID=NULL, const wxString &fileName=SQL_CATALOG_FILENAME);
02cf6fdd 633 int GetKeyFields(const wxString &tableName, wxDbColInf* colInf, UWORD noCols);
4fdae997
GT
634
635 wxDbColInf *GetColumns(wxChar *tableName[], const wxChar *userID=NULL);
68379eaf 636 wxDbColInf *GetColumns(const wxString &tableName, UWORD *numCols, const wxChar *userID=NULL);
4fdae997 637
dba2120c 638 int GetColumnCount(const wxString &tableName, const wxChar *userID=NULL);
b742792c 639 const wxChar *GetDatabaseName(void) {return dbInf.dbmsName;}
4fdae997
GT
640 const wxString &GetDataSource(void) {return dsn;}
641 const wxString &GetDatasourceName(void){return dsn;}
642 const wxString &GetUsername(void) {return uid;}
643 const wxString &GetPassword(void) {return authStr;}
0907ea9c
GT
644 const wxString &GetConnectionInStr(void) {return inConnectionStr;}
645 const wxString &GetConnectionOutStr(void) {return outConnectionStr;}
b742792c 646 bool IsOpen(void) {return dbIsOpen;}
0907ea9c 647 bool OpenedWithConnectionString(void) {return dbOpenedWithConnectionString;}
b742792c
GT
648 HENV GetHENV(void) {return henv;}
649 HDBC GetHDBC(void) {return hdbc;}
650 HSTMT GetHSTMT(void) {return hstmt;}
651 int GetTableCount() {return nTables;} // number of tables using this connection
652 wxDbSqlTypeInfo GetTypeInfVarchar() {return typeInfVarchar;}
653 wxDbSqlTypeInfo GetTypeInfInteger() {return typeInfInteger;}
654 wxDbSqlTypeInfo GetTypeInfFloat() {return typeInfFloat;}
655 wxDbSqlTypeInfo GetTypeInfDate() {return typeInfDate;}
656 wxDbSqlTypeInfo GetTypeInfBlob() {return typeInfBlob;}
657
658 // tableName can refer to a table, view, alias or synonym
68379eaf 659 bool TableExists(const wxString &tableName, const wxChar *userID=NULL,
b742792c 660 const wxString &tablePath=wxEmptyString);
68379eaf
WS
661 bool TablePrivileges(const wxString &tableName, const wxString &priv,
662 const wxChar *userID=NULL, const wxChar *schema=NULL,
b742792c
GT
663 const wxString &path=wxEmptyString);
664
243d4b36
GT
665 // These two functions return the table name or column name in a form ready
666 // for use in SQL statements. For example, if the datasource allows spaces
667 // in the table name or column name, the returned string will have the
68379eaf 668 // correct enclosing marks around the name to allow it to be properly
243d4b36 669 // included in a SQL statement
5bdad317
GT
670 const wxString SQLTableName(const wxChar *tableName);
671 const wxString SQLColumnName(const wxChar *colName);
243d4b36 672
68379eaf 673 void LogError(const wxString &errMsg, const wxString &SQLState = wxEmptyString)
b742792c 674 { logError(errMsg, SQLState); }
f6bcfd97 675 void SetDebugErrorMessages(bool state) { silent = !state; }
68379eaf
WS
676 bool SetSqlLogging(wxDbSqlLogState state, const wxString &filename = SQL_LOG_FILENAME,
677 bool append = false);
4fdae997 678 bool WriteSqlLog(const wxString &logMsg);
b742792c 679
fdc03678 680 wxDBMS Dbms(void);
4fdae997
GT
681 bool ModifyColumn(const wxString &tableName, const wxString &columnName,
682 int dataType, ULONG columnLength=0,
da99271d 683 const wxString &optionalParam=wxEmptyString);
4fdae997 684
f6bcfd97
BP
685 bool FwdOnlyCursors(void) {return fwdOnlyCursors;}
686
687 // These two functions are provided strictly for use by wxDbTable.
688 // DO NOT USE THESE FUNCTIONS, OR MEMORY LEAKS MAY OCCUR
689 void incrementTableCount() { nTables++; return; }
690 void decrementTableCount() { nTables--; return; }
691
692}; // wxDb
108106cf 693
fdc03678 694
108106cf
JS
695// This structure forms a node in a linked list. The linked list of "DbList" objects
696// keeps track of allocated database connections. This allows the application to
697// open more than one database connection through ODBC for multiple transaction support
698// or for multiple database support.
fdc03678 699struct wxDbList
108106cf 700{
4fdae997
GT
701 wxDbList *PtrPrev; // Pointer to previous item in the list
702 wxString Dsn; // Data Source Name
703 wxString Uid; // User ID
704 wxString AuthStr; // Authorization string (password)
0907ea9c 705 wxString ConnectionStr; // Connection string used instead of DSN
4fdae997
GT
706 wxDb *PtrDb; // Pointer to the wxDb object
707 bool Free; // Is item free or in use?
708 wxDbList *PtrNext; // Pointer to next item in the list
108106cf
JS
709};
710
5cf34cf0 711
154f22b3 712#ifdef __WXDEBUG__
e115e771 713#include "wx/object.h"
fdc03678 714class wxTablesInUse : public wxObject
a2115c88 715{
95ca6a20 716 public:
4fdae997 717 const wxChar *tableName;
95ca6a20 718 ULONG tableID;
f6bcfd97 719 class wxDb *pDb;
fdc03678 720}; // wxTablesInUse
a2115c88
GT
721#endif
722
fdc03678 723
108106cf
JS
724// The following routines allow a user to get new database connections, free them
725// for other code segments to use, or close all of them when the application has
726// completed.
bb41dcbe
VS
727wxDb WXDLLIMPEXP_ODBC *wxDbGetConnection(wxDbConnectInf *pDbConfig, bool FwdOnlyCursors=(bool)wxODBC_FWD_ONLY_CURSORS);
728bool WXDLLIMPEXP_ODBC wxDbFreeConnection(wxDb *pDb);
729void WXDLLIMPEXP_ODBC wxDbCloseConnections(void);
730int WXDLLIMPEXP_ODBC wxDbConnectionsInUse(void);
95ca6a20 731
108106cf 732
20987580
GT
733// Writes a message to the wxLog window (stdout usually) when an internal error
734// situation occurs. This function only works in DEBUG builds
f157ad08 735const wxChar WXDLLIMPEXP_ODBC *
886dd7d2
VZ
736wxDbLogExtendedErrorMsg(const wxChar *userText,
737 wxDb *pDb,
738 const wxChar *ErrFile,
739 int ErrLine);
5bdad317 740
20987580 741
f6bcfd97 742// This function sets the sql log state for all open wxDb objects
bb41dcbe 743bool WXDLLIMPEXP_ODBC
886dd7d2 744wxDbSqlLog(wxDbSqlLogState state, const wxString &filename = SQL_LOG_FILENAME);
fdc03678 745
95ca6a20 746
fdc03678
GT
747#if 0
748// MSW/VC6 ONLY!!! Experimental
da99271d 749int WXDLLEXPORT wxDbCreateDataSource(const wxString &driverName, const wxString &dsn, const wxString &description=wxEmptyString,
68379eaf 750 bool sysDSN=false, const wxString &defDir=wxEmptyString, wxWindow *parent=NULL);
fdc03678 751#endif
a2115c88 752
108106cf
JS
753// This routine allows you to query a driver manager
754// for a list of available datasources. Call this routine
755// the first time using SQL_FETCH_FIRST. Continue to call it
756// using SQL_FETCH_NEXT until you've exhausted the list.
bb41dcbe 757bool WXDLLIMPEXP_ODBC
e4e45573
GT
758wxDbGetDataSource(HENV henv, wxChar *Dsn, SWORD DsnMaxLength, wxChar *DsDesc,
759 SWORD DsDescMaxLength, UWORD direction = SQL_FETCH_NEXT);
fdc03678
GT
760
761
762// Change this to 0 to remove use of all deprecated functions
f6bcfd97 763#if wxODBC_BACKWARD_COMPATABILITY
fdc03678
GT
764//#################################################################################
765//############### DEPRECATED functions for backward compatability #################
766//#################################################################################
767
768// Backward compability structures/classes. This will eventually go away
f6bcfd97
BP
769const int DB_PATH_MAX = wxDB_PATH_MAX;
770
771typedef wxDb wxDB;
772typedef wxDbTableInf wxTableInf;
773typedef wxDbColInf wxColInf;
774typedef wxDbColInf CcolInf;
775typedef wxDbColFor wxColFor;
776typedef wxDbSqlTypeInfo SqlTypeInfo;
777typedef wxDbSqlTypeInfo wxSqlTypeInfo;
778typedef enum wxDbSqlLogState sqlLog;
779typedef enum wxDbSqlLogState wxSqlLogState;
780typedef enum wxDBMS dbms;
781typedef enum wxDBMS DBMS;
782typedef wxODBC_ERRORS ODBC_ERRORS;
783typedef wxDbConnectInf DbStuff;
784typedef wxDbList DbList;
27508856 785#ifdef __WXDEBUG__
f6bcfd97 786typedef wxTablesInUse CstructTablesInUse;
27508856 787#endif
fdc03678
GT
788
789// Deprecated function names that are replaced by the function names listed above
bb41dcbe 790wxDB WXDLLIMPEXP_ODBC
886dd7d2 791*GetDbConnection(DbStuff *pDbStuff, bool FwdOnlyCursors=(bool)wxODBC_FWD_ONLY_CURSORS);
bb41dcbe
VS
792bool WXDLLIMPEXP_ODBC FreeDbConnection(wxDB *pDb);
793void WXDLLIMPEXP_ODBC CloseDbConnections(void);
794int WXDLLIMPEXP_ODBC NumberDbConnectionsInUse(void);
fdc03678 795
2b5f62a0 796bool SqlLog(sqlLog state, const wxChar *filename = SQL_LOG_FILENAME);
fdc03678 797
bb41dcbe 798bool WXDLLIMPEXP_ODBC
e4e45573 799GetDataSource(HENV henv, char *Dsn, SWORD DsnMaxLength, char *DsDesc, SWORD DsDescMaxLength,
886dd7d2
VZ
800 UWORD direction = SQL_FETCH_NEXT);
801
fdc03678 802#endif // Deprecated structures/classes/functions
108106cf 803
2b5f62a0
VZ
804#endif // _WX_DB_H_
805