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