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