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