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