]> git.saurik.com Git - wxWidgets.git/blame - include/wx/db.h
preparing for fix to OSX problems
[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.
22// Licence: wxWindows licence, plus:
95ca6a20 23// Notice: This class library and its intellectual design are free of charge for use,
108106cf
JS
24// modification, enhancement, debugging under the following conditions:
25// 1) These classes may only be used as part of the implementation of a
26// wxWindows-based application
27// 2) All enhancements and bug fixes are to be submitted back to the wxWindows
28// user groups free of all charges for use with the wxWindows library.
29// 3) These classes may not be distributed as part of any other class library,
30// DLL, text (written or electronic), other than a complete distribution of
31// the wxWindows GUI development toolkit.
1fc5dd6f 32//
108106cf
JS
33///////////////////////////////////////////////////////////////////////////////
34
2b5f62a0
VZ
35#ifndef _WX_DB_H_
36#define _WX_DB_H_
a2115c88 37
f6bcfd97
BP
38
39// BJO 20000503: introduce new GetColumns members which are more database independant and
40// return columns in the order they were created
41#define OLD_GETCOLUMNS 1
e2f4e132 42#define EXPERIMENTAL_WXDB_FUNCTIONS 1
f6bcfd97 43
a2115c88
GT
44#include "wx/version.h"
45
af49c4b8 46#if defined(__GNUG__) && !defined(__APPLE__)
20987580 47 #pragma interface "db.h"
108106cf
JS
48#endif
49
16b52fa1
RR
50#include "wx/setup.h"
51
d4af841d
GT
52#include "wx/defs.h"
53#include "wx/string.h"
54
e2f4e132 55#ifdef __VISUALC__
2b5f62a0
VZ
56 // we need to include standard Windows headers but we can't include
57 // <windows.h> directly when using MFC because it includes it itself in a
58 // different manner
59 #if wxUSE_MFC
60 #include <afxwin.h>
61 #else // !wxUSE_MFC
62 #ifndef STRICT
63 #define STRICT 1
64 #endif
65
66 #include <windows.h>
67 #include "wx/msw/winundef.h"
68 #endif // wxUSE_MFC/!wxUSE_MFC
69
70 // If you use the wxDbCreateDataSource() function with MSW/VC6,
71 // you cannot use the iODBC headers, you must use the VC headers,
72 // plus the odbcinst.h header - gt Nov 2 2000
73 //
74 // Must add "odbccp32.lib" in \wx2\wxWindows\src\makevc.env to the WINLIBS= line
75 //
e2f4e132
GT
76 #include "sql.h"
77 #include "sqlext.h"
78 #include "odbcinst.h"
f7556ff0
JS
79#else
80 // Use the ones from the library
2b5f62a0 81 extern "C" {
f7556ff0
JS
82 #include <sql.h>
83 #include <sqlext.h>
2b5f62a0 84 }
aecca2c8
MB
85#endif
86
30a6d2d2 87
595b5c4e
MJ
88typedef float SFLOAT;
89typedef double SDOUBLE;
95ca6a20
GT
90typedef unsigned int UINT;
91#define ULONG UDWORD
30a6d2d2
GT
92
93#ifndef wxODBC_FWD_ONLY_CURSORS
94#define wxODBC_FWD_ONLY_CURSORS 1
95#endif
96
95ca6a20 97enum enumDummy {enumDum1};
7e616b10 98
b742792c 99#ifndef SQL_C_BOOLEAN
a2115c88 100#define SQL_C_BOOLEAN(datatype) (sizeof(datatype) == 1 ? SQL_C_UTINYINT : (sizeof(datatype) == 2 ? SQL_C_USHORT : SQL_C_ULONG))
20987580 101//# define SQL_C_BOOLEAN (sizeof(int) == 2 ? SQL_C_USHORT : SQL_C_ULONG)
b742792c 102#endif
20987580 103
b742792c 104#ifndef SQL_C_ENUM
a2115c88 105#define SQL_C_ENUM (sizeof(enumDummy) == 2 ? SQL_C_USHORT : SQL_C_ULONG)
b742792c 106#endif
20987580 107
b742792c
GT
108#ifndef SQL_C_BLOB
109 #ifdef SQL_LONGVARBINARY
110 #define SQL_C_BLOB SQL_LONGVARBINARY
111 #elif SQL_VARBINARY
112 #define SQL_C_BLOB SQL_VARBINARY
113 #endif
114#endif
a144affe 115/*
a2115c88 116#ifndef TRUE
20987580 117#define TRUE true
7e616b10
RR
118#endif
119
a2115c88 120#ifndef FALSE
20987580 121#define FALSE false
a2115c88 122#endif
a144affe 123*/
f6bcfd97 124const int wxDB_PATH_MAX = 254;
95ca6a20 125
8a77c0d7
GT
126WXDLLEXPORT_DATA(extern wxChar const *) SQL_LOG_FILENAME;
127WXDLLEXPORT_DATA(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
GT
262#ifndef MAXNAME
263#define MAXNAME 31
264#endif
265
266#ifndef SQL_MAX_AUTHSTR_LEN
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
270#endif
95ca6a20 271
1ddfb726 272class WXDLLEXPORT wxDbConnectInf
108106cf 273{
5cf34cf0
GT
274 private:
275 bool freeHenvOnDestroy;
a2115c88 276
5cf34cf0 277 public:
2f971924
GT
278 HENV Henv;
279 wxChar Dsn[SQL_MAX_DSN_LENGTH+1]; // Data Source Name
280 wxChar Uid[SQL_MAX_USER_NAME_LEN+1]; // User ID
281 wxChar AuthStr[SQL_MAX_AUTHSTR_LEN+1]; // Authorization string (password)
5cf34cf0
GT
282
283 wxString Description; // Not sure what the max length is
284 wxString FileType; // Not sure what the max length is
285
286 // Optionals needed for some databases like dBase
287 wxString DefaultDir; // Directory that db file resides in
288
289 public:
290
291 wxDbConnectInf();
da99271d
GT
292 wxDbConnectInf(HENV henv, const wxString &dsn, const wxString &userID=wxEmptyString,
293 const wxString &password=wxEmptyString, const wxString &defaultDir=wxEmptyString,
294 const wxString &description=wxEmptyString, const wxString &fileType=wxEmptyString);
5cf34cf0
GT
295
296 ~wxDbConnectInf();
297
298 bool Initialize();
299
300 bool AllocHenv();
301 void FreeHenv();
302
303 // Accessors
6a71ee86 304 const HENV &GetHenv() { return Henv; };
5cf34cf0
GT
305
306 const wxChar *GetDsn() { return Dsn; };
307
308 const wxChar *GetUid() { return Uid; };
309 const wxChar *GetUserID() { return Uid; };
310
311 const wxChar *GetAuthStr() { return AuthStr; };
312 const wxChar *GetPassword() { return AuthStr; };
313
314 const wxChar *GetDescription() { return Description; };
315 const wxChar *GetFileType() { return FileType; };
316 const wxChar *GetDefaultDir() { return DefaultDir; };
317
318 void SetHenv(const HENV henv) { Henv = henv; };
319
320 void SetDsn(const wxString &dsn);
321
322 void SetUserID(const wxString &userID);
323 void SetUid(const wxString &uid) { SetUserID(uid); };
324
325 void SetPassword(const wxString &password);
326 void SetAuthStr(const wxString &authstr) { SetPassword(authstr); };
327
328 void SetDescription(const wxString &desc) { Description = desc; };
329 void SetFileType(const wxString &fileType) { FileType = fileType; };
330 void SetDefaultDir(const wxString &defDir) { DefaultDir = defDir; };
331}; // class wxDbConnectInf
a2115c88 332
108106cf 333
1ddfb726 334struct WXDLLEXPORT wxDbSqlTypeInfo
108106cf 335{
4fdae997 336 wxString TypeName;
02cf6fdd 337 SWORD FsqlType;
4fdae997
GT
338 long Precision;
339 short CaseSensitive;
340// short MinimumScale;
341 short MaximumScale;
fdc03678 342};
108106cf 343
95ca6a20 344
f6bcfd97 345class WXDLLEXPORT wxDbColFor
30a6d2d2 346{
95ca6a20 347public:
5cf34cf0
GT
348 wxString s_Field; // Formated String for Output
349 wxString s_Format[7]; // Formated Objects - TIMESTAMP has the biggest (7)
3ca6a5f0
BP
350 wxString s_Amount[7]; // Formated Objects - amount of things that can be formatted
351 int i_Amount[7]; // Formated Objects - TT MM YYYY HH MM SS m
5cf34cf0
GT
352 int i_Nation; // 0 = timestamp , 1=EU, 2=UK, 3=International, 4=US
353 int i_dbDataType; // conversion of the 'sqlDataType' to the generic data type used by these classes
95ca6a20
GT
354 SWORD i_sqlDataType;
355
f6bcfd97
BP
356 wxDbColFor();
357 ~wxDbColFor();
595b5c4e 358
6a71ee86 359 void Initialize();
95ca6a20 360 int Format(int Nation, int dbDataType, SWORD sqlDataType, short columnSize, short decimalDigits);
30a6d2d2
GT
361};
362
95ca6a20 363
f6bcfd97 364class WXDLLEXPORT wxDbColInf
108106cf
JS
365{
366public:
4fdae997
GT
367 wxChar catalog[128+1];
368 wxChar schema[128+1];
369 wxChar tableName[DB_MAX_TABLE_NAME_LEN+1];
370 wxChar colName[DB_MAX_COLUMN_NAME_LEN+1];
95ca6a20 371 SWORD sqlDataType;
4fdae997 372 wxChar typeName[128+1];
95ca6a20
GT
373 SWORD columnSize;
374 SWORD bufferLength;
375 short decimalDigits;
376 short numPrecRadix;
377 short nullable;
4fdae997 378 wxChar remarks[254+1];
95ca6a20 379 int dbDataType; // conversion of the 'sqlDataType' to the generic data type used by these classes
30a6d2d2
GT
380 // mj10777.19991224 : new
381 int PkCol; // Primary key column 0=No; 1= First Key, 2 = Second Key etc.
4fdae997 382 wxChar PkTableName[DB_MAX_TABLE_NAME_LEN+1]; // Tables that use this PKey as a FKey
30a6d2d2 383 int FkCol; // Foreign key column 0=No; 1= First Key, 2 = Second Key etc.
4fdae997 384 wxChar FkTableName[DB_MAX_TABLE_NAME_LEN+1]; // Foreign key table name
f6bcfd97 385 wxDbColFor *pColFor; // How should this columns be formatted
3ca6a5f0
BP
386
387 wxDbColInf();
388 ~wxDbColInf();
da99271d
GT
389
390 bool Initialize();
30a6d2d2
GT
391};
392
95ca6a20 393
f6bcfd97 394class WXDLLEXPORT wxDbTableInf // Description of a Table
95ca6a20 395{
30a6d2d2 396public:
4fdae997
GT
397 wxChar tableName[DB_MAX_TABLE_NAME_LEN+1];
398 wxChar tableType[254+1]; // "TABLE" or "SYSTEM TABLE" etc.
399 wxChar tableRemarks[254+1];
02cf6fdd 400 UWORD numCols; // How many Columns does this Table have: GetColumnCount(..);
f6bcfd97 401 wxDbColInf *pColInf; // pColInf = NULL ; User can later call GetColumns(..);
da99271d 402
3ca6a5f0
BP
403 wxDbTableInf();
404 ~wxDbTableInf();
da99271d
GT
405
406 bool Initialize();
30a6d2d2
GT
407};
408
95ca6a20 409
30a6d2d2 410class WXDLLEXPORT wxDbInf // Description of a Database
95ca6a20 411{
30a6d2d2 412public:
4fdae997
GT
413 wxChar catalog[128+1];
414 wxChar schema[128+1];
f6bcfd97
BP
415 int numTables; // How many tables does this database have
416 wxDbTableInf *pTableInf; // pTableInf = new wxDbTableInf[numTables];
3ca6a5f0
BP
417
418 wxDbInf();
419 ~wxDbInf();
6a71ee86 420
da99271d 421 bool Initialize();
108106cf
JS
422};
423
95ca6a20 424
f6bcfd97 425enum wxDbSqlLogState
1fc5dd6f 426{
95ca6a20
GT
427 sqlLogOFF,
428 sqlLogON
1fc5dd6f
JS
429};
430
95ca6a20 431// These are the databases currently tested and working with these classes
f6bcfd97 432// See the comments in wxDb::Dbms() for exceptions/issues with
95ca6a20 433// each of these database engines
fdc03678 434enum wxDBMS
a2115c88 435{
95ca6a20
GT
436 dbmsUNIDENTIFIED,
437 dbmsORACLE,
438 dbmsSYBASE_ASA, // Adaptive Server Anywhere
439 dbmsSYBASE_ASE, // Adaptive Server Enterprise
440 dbmsMS_SQL_SERVER,
441 dbmsMY_SQL,
442 dbmsPOSTGRES,
443 dbmsACCESS,
444 dbmsDBASE,
f6bcfd97 445 dbmsINFORMIX,
e2f4e132 446 dbmsVIRTUOSO,
d8a0a1c9 447 dbmsDB2,
1b12ab16 448 dbmsINTERBASE,
9f4de2dc
JS
449 dbmsPERVASIVE_SQL,
450 dbmsXBASE_SEQUITER
a2115c88
GT
451};
452
95ca6a20 453
f6bcfd97 454// The wxDb::errorList is copied to this variable when the wxDb object
a2115c88 455// is closed. This way, the error list is still available after the
595b5c4e 456// database object is closed. This is necessary if the database
a2115c88 457// connection fails so the calling application can show the operator
f6bcfd97
BP
458// why the connection failed. Note: as each wxDb object is closed, it
459// will overwrite the errors of the previously destroyed wxDb object in
a2115c88 460// this variable.
8a77c0d7
GT
461
462WXDLLEXPORT_DATA(extern wxChar) DBerrorList[DB_MAX_ERROR_HISTORY][DB_MAX_ERROR_MSG_LEN];
a2115c88 463
95ca6a20 464
f6bcfd97 465class WXDLLEXPORT wxDb
108106cf
JS
466{
467private:
95ca6a20 468 bool dbIsOpen;
20987580 469 bool dbIsCached; // Was connection created by caching functions
4fdae997
GT
470 wxString dsn; // Data source name
471 wxString uid; // User ID
472 wxString authStr; // Authorization string (password)
95ca6a20 473 FILE *fpSqlLog; // Sql Log file pointer
f6bcfd97 474 wxDbSqlLogState sqlLogState; // On or Off
95ca6a20 475 bool fwdOnlyCursors;
e2f4e132 476 wxDBMS dbmsType; // Type of datasource - i.e. Oracle, dBase, SQLServer, etc
95ca6a20
GT
477
478 // Private member functions
479 bool getDbInfo(void);
f6bcfd97 480 bool getDataTypeInfo(SWORD fSqlType, wxDbSqlTypeInfo &structSQLTypeInfo);
95ca6a20 481 bool setConnectionOptions(void);
4fdae997 482 void logError(const wxString &errMsg, const wxString &SQLState);
4fdae997 483 const wxChar *convertUserID(const wxChar *userID, wxString &UserID);
da99271d 484 void initialize();
4fdae997 485
f6bcfd97
BP
486#if !wxODBC_BACKWARD_COMPATABILITY
487 // ODBC handles
488 HENV henv; // ODBC Environment handle
489 HDBC hdbc; // ODBC DB Connection handle
490 HSTMT hstmt; // ODBC Statement handle
491
492 //Error reporting mode
493 bool silent;
494
495 // Number of Ctable objects connected to this db object. FOR INTERNAL USE ONLY!!!
496 unsigned int nTables;
497
498 // Information about logical data types VARCHAR, INTEGER, FLOAT and DATE.
3ca6a5f0 499 //
f6bcfd97
BP
500 // This information is obtained from the ODBC driver by use of the
501 // SQLGetTypeInfo() function. The key piece of information is the
502 // type name the data source uses for each logical data type.
503 // e.g. VARCHAR; Oracle calls it VARCHAR2.
504 wxDbSqlTypeInfo typeInfVarchar;
505 wxDbSqlTypeInfo typeInfInteger;
506 wxDbSqlTypeInfo typeInfFloat;
507 wxDbSqlTypeInfo typeInfDate;
b742792c 508 wxDbSqlTypeInfo typeInfBlob;
f6bcfd97 509#endif
a3439c7d 510
108106cf 511public:
b742792c 512
20987580
GT
513 void setCached(bool cached) { dbIsCached = cached; }; // This function must only be called by wxDbGetConnection() and wxDbCloseConnections!!!
514 bool IsCached() { return dbIsCached; };
515
b742792c
GT
516 bool GetDataTypeInfo(SWORD fSqlType, wxDbSqlTypeInfo &structSQLTypeInfo)
517 { return getDataTypeInfo(fSqlType, structSQLTypeInfo); }
518
f6bcfd97
BP
519#if wxODBC_BACKWARD_COMPATABILITY
520 // ODBC handles
521 HENV henv; // ODBC Environment handle
522 HDBC hdbc; // ODBC DB Connection handle
523 HSTMT hstmt; // ODBC Statement handle
524
525 //Error reporting mode
526 bool silent;
527
528 // Number of Ctable objects connected to this db object. FOR INTERNAL USE ONLY!!!
529 unsigned int nTables;
530#endif
531
95ca6a20
GT
532 // The following structure contains database information gathered from the
533 // datasource when the datasource is first opened.
534 struct
535 {
4fdae997
GT
536 wxChar dbmsName[40]; // Name of the dbms product
537 wxChar dbmsVer[64]; // Version # of the dbms product
538 wxChar driverName[40]; // Driver name
539 wxChar odbcVer[60]; // ODBC version of the driver
540 wxChar drvMgrOdbcVer[60]; // ODBC version of the driver manager
541 wxChar driverVer[60]; // Driver version
542 wxChar serverName[80]; // Server Name, typically a connect string
543 wxChar databaseName[128]; // Database filename
544 wxChar outerJoins[2]; // Indicates whether the data source supports outer joins
545 wxChar procedureSupport[2]; // Indicates whether the data source supports stored procedures
546 wxChar accessibleTables[2]; // Indicates whether the data source only reports accessible tables in SQLTables.
95ca6a20
GT
547 UWORD maxConnections; // Maximum # of connections the data source supports
548 UWORD maxStmts; // Maximum # of HSTMTs per HDBC
549 UWORD apiConfLvl; // ODBC API conformance level
550 UWORD cliConfLvl; // Indicates whether the data source is SAG compliant
551 UWORD sqlConfLvl; // SQL conformance level
552 UWORD cursorCommitBehavior; // Indicates how cursors are affected by a db commit
553 UWORD cursorRollbackBehavior; // Indicates how cursors are affected by a db rollback
554 UWORD supportNotNullClause; // Indicates if data source supports NOT NULL clause
4fdae997 555 wxChar supportIEF[2]; // Integrity Enhancement Facility (Referential Integrity)
95ca6a20
GT
556 UDWORD txnIsolation; // Default transaction isolation level supported by the driver
557 UDWORD txnIsolationOptions; // Transaction isolation level options available
558 UDWORD fetchDirections; // Fetch directions supported
559 UDWORD lockTypes; // Lock types supported in SQLSetPos
560 UDWORD posOperations; // Position operations supported in SQLSetPos
561 UDWORD posStmts; // Position statements supported
562 UDWORD scrollConcurrency; // Concurrency control options supported for scrollable cursors
563 UDWORD scrollOptions; // Scroll Options supported for scrollable cursors
564 UDWORD staticSensitivity; // Indicates if additions, deletions and updates can be detected
565 UWORD txnCapable; // Indicates if the data source supports transactions
566 UDWORD loginTimeout; // Number seconds to wait for a login request
567 } dbInf;
568
95ca6a20 569 // ODBC Error Inf.
95ca6a20 570 SWORD cbErrorMsg;
95ca6a20 571 int DB_STATUS;
f6bcfd97
BP
572 wxChar errorList[DB_MAX_ERROR_HISTORY][DB_MAX_ERROR_MSG_LEN];
573 wxChar errorMsg[SQL_MAX_MESSAGE_LENGTH];
574 SDWORD nativeError;
575 wxChar sqlState[20];
95ca6a20 576
f6bcfd97
BP
577#if wxODBC_BACKWARD_COMPATABILITY
578 // Information about logical data types VARCHAR, INTEGER, FLOAT and DATE.
3ca6a5f0 579 //
f6bcfd97
BP
580 // This information is obtained from the ODBC driver by use of the
581 // SQLGetTypeInfo() function. The key piece of information is the
95ca6a20
GT
582 // type name the data source uses for each logical data type.
583 // e.g. VARCHAR; Oracle calls it VARCHAR2.
f6bcfd97
BP
584 wxDbSqlTypeInfo typeInfVarchar;
585 wxDbSqlTypeInfo typeInfInteger;
586 wxDbSqlTypeInfo typeInfFloat;
587 wxDbSqlTypeInfo typeInfDate;
b742792c 588 wxDbSqlTypeInfo typeInfBlob;
f6bcfd97 589#endif
595b5c4e 590
95ca6a20 591 // Public member functions
6a71ee86 592 wxDb(const HENV &aHenv, bool FwdOnlyCursors=(bool)wxODBC_FWD_ONLY_CURSORS);
20987580 593 ~wxDb();
5cf34cf0 594
e25cdb86
GT
595 // Data Source Name, User ID, Password and whether open should fail on data type not supported
596 bool Open(const wxString &Dsn, const wxString &Uid, const wxString &AuthStr, bool failOnDataTypeUnsupported=TRUE);
6a71ee86 597 bool Open(wxDbConnectInf *dbConnectInf);
e2f4e132 598 bool Open(wxDb *copyDb); // pointer to a wxDb whose connection info should be copied rather than re-queried
95ca6a20
GT
599 void Close(void);
600 bool CommitTrans(void);
601 bool RollbackTrans(void);
602 bool DispAllErrors(HENV aHenv, HDBC aHdbc = SQL_NULL_HDBC, HSTMT aHstmt = SQL_NULL_HSTMT);
603 bool GetNextError(HENV aHenv, HDBC aHdbc = SQL_NULL_HDBC, HSTMT aHstmt = SQL_NULL_HSTMT);
604 void DispNextError(void);
a144affe 605 bool CreateView(const wxString &viewName, const wxString &colList, const wxString &pSqlStmt, bool attemptDrop=TRUE);
4fdae997
GT
606 bool DropView(const wxString &viewName);
607 bool ExecSql(const wxString &pSqlStmt);
95ca6a20
GT
608 bool GetNext(void);
609 bool GetData(UWORD colNo, SWORD cType, PTR pData, SDWORD maxLen, SDWORD FAR *cbReturned);
4fdae997
GT
610 bool Grant(int privileges, const wxString &tableName, const wxString &userList = wxT("PUBLIC"));
611 int TranslateSqlState(const wxString &SQLState);
612 wxDbInf *GetCatalog(const wxChar *userID=NULL);
613 bool Catalog(const wxChar *userID=NULL, const wxString &fileName=SQL_CATALOG_FILENAME);
02cf6fdd 614 int GetKeyFields(const wxString &tableName, wxDbColInf* colInf, UWORD noCols);
4fdae997
GT
615
616 wxDbColInf *GetColumns(wxChar *tableName[], const wxChar *userID=NULL);
02cf6fdd 617 wxDbColInf *GetColumns(const wxString &tableName, UWORD *numCols, const wxChar *userID=NULL);
4fdae997 618
dba2120c 619 int GetColumnCount(const wxString &tableName, const wxChar *userID=NULL);
b742792c 620 const wxChar *GetDatabaseName(void) {return dbInf.dbmsName;}
4fdae997
GT
621 const wxString &GetDataSource(void) {return dsn;}
622 const wxString &GetDatasourceName(void){return dsn;}
623 const wxString &GetUsername(void) {return uid;}
624 const wxString &GetPassword(void) {return authStr;}
b742792c
GT
625 bool IsOpen(void) {return dbIsOpen;}
626 HENV GetHENV(void) {return henv;}
627 HDBC GetHDBC(void) {return hdbc;}
628 HSTMT GetHSTMT(void) {return hstmt;}
629 int GetTableCount() {return nTables;} // number of tables using this connection
630 wxDbSqlTypeInfo GetTypeInfVarchar() {return typeInfVarchar;}
631 wxDbSqlTypeInfo GetTypeInfInteger() {return typeInfInteger;}
632 wxDbSqlTypeInfo GetTypeInfFloat() {return typeInfFloat;}
633 wxDbSqlTypeInfo GetTypeInfDate() {return typeInfDate;}
634 wxDbSqlTypeInfo GetTypeInfBlob() {return typeInfBlob;}
635
636 // tableName can refer to a table, view, alias or synonym
637 bool TableExists(const wxString &tableName, const wxChar *userID=NULL,
638 const wxString &tablePath=wxEmptyString);
639 bool TablePrivileges(const wxString &tableName, const wxString &priv,
640 const wxChar *userID=NULL, const wxChar *schema=NULL,
641 const wxString &path=wxEmptyString);
642
243d4b36
GT
643 // These two functions return the table name or column name in a form ready
644 // for use in SQL statements. For example, if the datasource allows spaces
645 // in the table name or column name, the returned string will have the
646 // correct enclosing marks around the name to allow it to be properly
647 // included in a SQL statement
5bdad317
GT
648 const wxString SQLTableName(const wxChar *tableName);
649 const wxString SQLColumnName(const wxChar *colName);
243d4b36 650
b742792c
GT
651 void LogError(const wxString &errMsg, const wxString &SQLState = wxEmptyString)
652 { logError(errMsg, SQLState); }
f6bcfd97 653 void SetDebugErrorMessages(bool state) { silent = !state; }
b742792c 654 bool SetSqlLogging(wxDbSqlLogState state, const wxString &filename = SQL_LOG_FILENAME,
a144affe 655 bool append = FALSE);
4fdae997 656 bool WriteSqlLog(const wxString &logMsg);
b742792c 657
fdc03678 658 wxDBMS Dbms(void);
4fdae997
GT
659 bool ModifyColumn(const wxString &tableName, const wxString &columnName,
660 int dataType, ULONG columnLength=0,
da99271d 661 const wxString &optionalParam=wxEmptyString);
4fdae997 662
f6bcfd97
BP
663 bool FwdOnlyCursors(void) {return fwdOnlyCursors;}
664
665 // These two functions are provided strictly for use by wxDbTable.
666 // DO NOT USE THESE FUNCTIONS, OR MEMORY LEAKS MAY OCCUR
667 void incrementTableCount() { nTables++; return; }
668 void decrementTableCount() { nTables--; return; }
669
670}; // wxDb
108106cf 671
fdc03678 672
108106cf
JS
673// This structure forms a node in a linked list. The linked list of "DbList" objects
674// keeps track of allocated database connections. This allows the application to
675// open more than one database connection through ODBC for multiple transaction support
676// or for multiple database support.
fdc03678 677struct wxDbList
108106cf 678{
4fdae997
GT
679 wxDbList *PtrPrev; // Pointer to previous item in the list
680 wxString Dsn; // Data Source Name
681 wxString Uid; // User ID
682 wxString AuthStr; // Authorization string (password)
683 wxDb *PtrDb; // Pointer to the wxDb object
684 bool Free; // Is item free or in use?
685 wxDbList *PtrNext; // Pointer to next item in the list
108106cf
JS
686};
687
5cf34cf0 688
154f22b3 689#ifdef __WXDEBUG__
e115e771 690#include "wx/object.h"
fdc03678 691class wxTablesInUse : public wxObject
a2115c88 692{
95ca6a20 693 public:
4fdae997 694 const wxChar *tableName;
95ca6a20 695 ULONG tableID;
f6bcfd97 696 class wxDb *pDb;
fdc03678 697}; // wxTablesInUse
a2115c88
GT
698#endif
699
fdc03678 700
108106cf
JS
701// The following routines allow a user to get new database connections, free them
702// for other code segments to use, or close all of them when the application has
703// completed.
f6bcfd97
BP
704wxDb WXDLLEXPORT *wxDbGetConnection(wxDbConnectInf *pDbConfig, bool FwdOnlyCursors=(bool)wxODBC_FWD_ONLY_CURSORS);
705bool WXDLLEXPORT wxDbFreeConnection(wxDb *pDb);
fdc03678 706void WXDLLEXPORT wxDbCloseConnections(void);
69d042c3 707int WXDLLEXPORT wxDbConnectionsInUse(void);
95ca6a20 708
108106cf 709
20987580
GT
710// Writes a message to the wxLog window (stdout usually) when an internal error
711// situation occurs. This function only works in DEBUG builds
f080251d 712const wxChar* WXDLLEXPORT wxDbLogExtendedErrorMsg(const wxChar *userText,
90350682
VZ
713 wxDb *pDb,
714 const wxChar *ErrFile,
715 int ErrLine);
5bdad317 716
20987580 717
f6bcfd97 718// This function sets the sql log state for all open wxDb objects
20987580 719bool WXDLLEXPORT wxDbSqlLog(wxDbSqlLogState state, const wxString &filename = SQL_LOG_FILENAME);
fdc03678 720
95ca6a20 721
fdc03678
GT
722#if 0
723// MSW/VC6 ONLY!!! Experimental
da99271d 724int WXDLLEXPORT wxDbCreateDataSource(const wxString &driverName, const wxString &dsn, const wxString &description=wxEmptyString,
a144affe 725 bool sysDSN=FALSE, const wxString &defDir=wxEmptyString, wxWindow *parent=NULL);
fdc03678 726#endif
a2115c88 727
108106cf
JS
728// This routine allows you to query a driver manager
729// for a list of available datasources. Call this routine
730// the first time using SQL_FETCH_FIRST. Continue to call it
731// using SQL_FETCH_NEXT until you've exhausted the list.
4fdae997 732bool WXDLLEXPORT wxDbGetDataSource(HENV henv, wxChar *Dsn, SWORD DsnMax, wxChar *DsDesc,
dba2120c 733 SWORD DsDescMax, UWORD direction = SQL_FETCH_NEXT);
fdc03678
GT
734
735
736// Change this to 0 to remove use of all deprecated functions
f6bcfd97 737#if wxODBC_BACKWARD_COMPATABILITY
fdc03678
GT
738//#################################################################################
739//############### DEPRECATED functions for backward compatability #################
740//#################################################################################
741
742// Backward compability structures/classes. This will eventually go away
f6bcfd97
BP
743const int DB_PATH_MAX = wxDB_PATH_MAX;
744
745typedef wxDb wxDB;
746typedef wxDbTableInf wxTableInf;
747typedef wxDbColInf wxColInf;
748typedef wxDbColInf CcolInf;
749typedef wxDbColFor wxColFor;
750typedef wxDbSqlTypeInfo SqlTypeInfo;
751typedef wxDbSqlTypeInfo wxSqlTypeInfo;
752typedef enum wxDbSqlLogState sqlLog;
753typedef enum wxDbSqlLogState wxSqlLogState;
754typedef enum wxDBMS dbms;
755typedef enum wxDBMS DBMS;
756typedef wxODBC_ERRORS ODBC_ERRORS;
757typedef wxDbConnectInf DbStuff;
758typedef wxDbList DbList;
27508856 759#ifdef __WXDEBUG__
f6bcfd97 760typedef wxTablesInUse CstructTablesInUse;
27508856 761#endif
fdc03678
GT
762
763// Deprecated function names that are replaced by the function names listed above
764wxDB WXDLLEXPORT *GetDbConnection(DbStuff *pDbStuff, bool FwdOnlyCursors=(bool)wxODBC_FWD_ONLY_CURSORS);
765bool WXDLLEXPORT FreeDbConnection(wxDB *pDb);
766void WXDLLEXPORT CloseDbConnections(void);
767int WXDLLEXPORT NumberDbConnectionsInUse(void);
768
2b5f62a0 769bool SqlLog(sqlLog state, const wxChar *filename = SQL_LOG_FILENAME);
fdc03678 770
30a6d2d2 771bool WXDLLEXPORT GetDataSource(HENV henv, char *Dsn, SWORD DsnMax, char *DsDesc, SWORD DsDescMax,
95ca6a20 772 UWORD direction = SQL_FETCH_NEXT);
fdc03678 773#endif // Deprecated structures/classes/functions
108106cf 774
2b5f62a0
VZ
775#endif // _WX_DB_H_
776