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