]>
Commit | Line | Data |
---|---|---|
108106cf | 1 | /////////////////////////////////////////////////////////////////////////////// |
1fc5dd6f | 2 | // Name: dbtable.cpp |
f6bcfd97 | 3 | // Purpose: Implementation of the wxDbTable class. |
108106cf | 4 | // Author: Doug Card |
67e9aaa3 | 5 | // Modified by: George Tasker |
3ca6a5f0 BP |
6 | // Bart Jourquin |
7 | // Mark Johnson | |
108106cf JS |
8 | // Created: 9.96 |
9 | // RCS-ID: $Id$ | |
10 | // Copyright: (c) 1996 Remstar International, Inc. | |
11 | // Licence: wxWindows licence, plus: | |
1e92909e | 12 | // Notice: This class library and its intellectual design are free of charge for use, |
108106cf JS |
13 | // modification, enhancement, debugging under the following conditions: |
14 | // 1) These classes may only be used as part of the implementation of a | |
15 | // wxWindows-based application | |
16 | // 2) All enhancements and bug fixes are to be submitted back to the wxWindows | |
17 | // user groups free of all charges for use with the wxWindows library. | |
18 | // 3) These classes may not be distributed as part of any other class library, | |
19 | // DLL, text (written or electronic), other than a complete distribution of | |
20 | // the wxWindows GUI development toolkit. | |
21 | /////////////////////////////////////////////////////////////////////////////// | |
22 | ||
23 | /* | |
24 | // SYNOPSIS START | |
25 | // SYNOPSIS STOP | |
26 | */ | |
e7c9692f | 27 | |
14f355c2 | 28 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
882fc8a9 GT |
29 | #pragma implementation "dbtable.h" |
30 | #endif | |
108106cf | 31 | |
a2115c88 GT |
32 | #include "wx/wxprec.h" |
33 | ||
882fc8a9 GT |
34 | #ifdef __BORLANDC__ |
35 | #pragma hdrstop | |
108106cf | 36 | #endif |
108106cf | 37 | |
0b8410f3 | 38 | #ifdef DBDEBUG_CONSOLE |
4888e623 GT |
39 | #if wxUSE_IOSTREAMH |
40 | #include <iostream.h> | |
41 | #else | |
42 | #include <iostream> | |
43 | #endif | |
0b8410f3 GT |
44 | #include "wx/ioswrap.h" |
45 | #endif | |
108106cf | 46 | |
882fc8a9 GT |
47 | #ifndef WX_PRECOMP |
48 | #include "wx/string.h" | |
49 | #include "wx/object.h" | |
50 | #include "wx/list.h" | |
51 | #include "wx/utils.h" | |
882fc8a9 | 52 | #include "wx/log.h" |
a2115c88 | 53 | #endif |
882fc8a9 | 54 | #include "wx/filefn.h" |
f6bcfd97 | 55 | |
a2115c88 | 56 | #if wxUSE_ODBC |
108106cf JS |
57 | |
58 | #include <stdio.h> | |
59 | #include <stdlib.h> | |
60 | #include <string.h> | |
67e9aaa3 | 61 | |
882fc8a9 | 62 | #include "wx/dbtable.h" |
108106cf | 63 | |
1fc5dd6f | 64 | #ifdef __UNIX__ |
108106cf JS |
65 | // The HPUX preprocessor lines below were commented out on 8/20/97 |
66 | // because macros.h currently redefines DEBUG and is unneeded. | |
67 | // # ifdef HPUX | |
68 | // # include <macros.h> | |
69 | // # endif | |
1fc5dd6f | 70 | # ifdef LINUX |
108106cf JS |
71 | # include <sys/minmax.h> |
72 | # endif | |
73 | #endif | |
74 | ||
a2115c88 GT |
75 | ULONG lastTableID = 0; |
76 | ||
77 | ||
e041ce57 | 78 | #ifdef __WXDEBUG__ |
89894079 | 79 | wxList TablesInUse; |
a2115c88 GT |
80 | #endif |
81 | ||
82 | ||
e7c9692f GT |
83 | void csstrncpyt(char *target, const char *source, int n) |
84 | { | |
85 | while ( (*target++ = *source++) != '\0' && --n ) | |
86 | ; | |
87 | ||
88 | *target = '\0'; | |
89 | } | |
90 | ||
91 | ||
92 | ||
da99271d GT |
93 | /********** wxDbColDef::wxDbColDef() Constructor **********/ |
94 | wxDbColDef::wxDbColDef() | |
95 | { | |
96 | Initialize(); | |
97 | } // Constructor | |
98 | ||
99 | ||
100 | bool wxDbColDef::Initialize() | |
101 | { | |
102 | ColName[0] = 0; | |
103 | DbDataType = DB_DATA_TYPE_INTEGER; | |
104 | SqlCtype = SQL_C_LONG; | |
105 | PtrDataObj = NULL; | |
106 | SzDataObj = 0; | |
a144affe GT |
107 | KeyField = FALSE; |
108 | Updateable = FALSE; | |
109 | InsertAllowed = FALSE; | |
110 | DerivedCol = FALSE; | |
da99271d | 111 | CbValue = 0; |
a144affe | 112 | Null = FALSE; |
da99271d | 113 | |
a144affe | 114 | return TRUE; |
da99271d GT |
115 | } // wxDbColDef::Initialize() |
116 | ||
117 | ||
118 | /********** wxDbTable::wxDbTable() Constructor **********/ | |
6b3f4fb8 | 119 | wxDbTable::wxDbTable(wxDb *pwxDb, const wxString &tblName, const UWORD numColumns, |
4fdae997 | 120 | const wxString &qryTblName, bool qryOnly, const wxString &tblPath) |
108106cf | 121 | { |
6b3f4fb8 | 122 | if (!initialize(pwxDb, tblName, numColumns, qryTblName, qryOnly, tblPath)) |
4fdae997 GT |
123 | cleanup(); |
124 | } // wxDbTable::wxDbTable() | |
125 | ||
126 | ||
127 | /***** DEPRECATED: use wxDbTable::wxDbTable() format above *****/ | |
6b3f4fb8 | 128 | wxDbTable::wxDbTable(wxDb *pwxDb, const wxString &tblName, const UWORD numColumns, |
4fdae997 GT |
129 | const wxChar *qryTblName, bool qryOnly, const wxString &tblPath) |
130 | { | |
131 | wxString tempQryTblName; | |
132 | tempQryTblName = qryTblName; | |
6b3f4fb8 | 133 | if (!initialize(pwxDb, tblName, numColumns, tempQryTblName, qryOnly, tblPath)) |
4fdae997 GT |
134 | cleanup(); |
135 | } // wxDbTable::wxDbTable() | |
136 | ||
137 | ||
138 | /********** wxDbTable::~wxDbTable() **********/ | |
139 | wxDbTable::~wxDbTable() | |
140 | { | |
141 | this->cleanup(); | |
142 | } // wxDbTable::~wxDbTable() | |
143 | ||
144 | ||
6b3f4fb8 | 145 | bool wxDbTable::initialize(wxDb *pwxDb, const wxString &tblName, const UWORD numColumns, |
4fdae997 GT |
146 | const wxString &qryTblName, bool qryOnly, const wxString &tblPath) |
147 | { | |
148 | // Initializing member variables | |
f6bcfd97 | 149 | pDb = pwxDb; // Pointer to the wxDb object |
89894079 VZ |
150 | henv = 0; |
151 | hdbc = 0; | |
152 | hstmt = 0; | |
882fc8a9 | 153 | m_hstmtGridQuery = 0; |
89894079 VZ |
154 | hstmtDefault = 0; // Initialized below |
155 | hstmtCount = 0; // Initialized first time it is needed | |
156 | hstmtInsert = 0; | |
157 | hstmtDelete = 0; | |
158 | hstmtUpdate = 0; | |
159 | hstmtInternal = 0; | |
160 | colDefs = 0; | |
161 | tableID = 0; | |
6b3f4fb8 | 162 | noCols = numColumns; // Number of cols in the table |
4fdae997 GT |
163 | where.Empty(); // Where clause |
164 | orderBy.Empty(); // Order By clause | |
165 | from.Empty(); // From clause | |
a144affe | 166 | selectForUpdate = FALSE; // SELECT ... FOR UPDATE; Indicates whether to include the FOR UPDATE phrase |
89894079 | 167 | queryOnly = qryOnly; |
a144affe | 168 | insertable = TRUE; |
4fdae997 GT |
169 | tablePath.Empty(); |
170 | tableName.Empty(); | |
171 | queryTableName.Empty(); | |
89894079 | 172 | |
4fdae997 GT |
173 | wxASSERT(tblName.Length()); |
174 | wxASSERT(pDb); | |
89894079 | 175 | |
4fdae997 | 176 | if (!pDb) |
a144affe | 177 | return FALSE; |
4fdae997 GT |
178 | |
179 | tableName = tblName; // Table Name | |
180 | if (tblPath.Length()) | |
181 | tablePath = tblPath; // Table Path - used for dBase files | |
f02d4a64 | 182 | else |
4fdae997 | 183 | tablePath.Empty(); |
da38429d | 184 | |
4fdae997 GT |
185 | if (qryTblName.Length()) // Name of the table/view to query |
186 | queryTableName = qryTblName; | |
89894079 | 187 | else |
4fdae997 | 188 | queryTableName = tblName; |
da38429d | 189 | |
f6bcfd97 | 190 | pDb->incrementTableCount(); |
da38429d | 191 | |
1e92909e | 192 | wxString s; |
89894079 | 193 | tableID = ++lastTableID; |
7d8c3dba | 194 | s.Printf(wxT("wxDbTable constructor (%-20s) tableID:[%6lu] pDb:[%p]"), tblName.c_str(), tableID, pDb); |
9082f1a9 | 195 | |
e041ce57 | 196 | #ifdef __WXDEBUG__ |
8128349e GT |
197 | wxTablesInUse *tableInUse; |
198 | tableInUse = new wxTablesInUse(); | |
89894079 | 199 | tableInUse->tableName = tblName; |
1e92909e GT |
200 | tableInUse->tableID = tableID; |
201 | tableInUse->pDb = pDb; | |
89894079 | 202 | TablesInUse.Append(tableInUse); |
a2115c88 | 203 | #endif |
da38429d | 204 | |
4fdae997 | 205 | pDb->WriteSqlLog(s); |
da38429d | 206 | |
f6bcfd97 BP |
207 | // Grab the HENV and HDBC from the wxDb object |
208 | henv = pDb->GetHENV(); | |
209 | hdbc = pDb->GetHDBC(); | |
da38429d | 210 | |
89894079 VZ |
211 | // Allocate space for column definitions |
212 | if (noCols) | |
4fdae997 | 213 | colDefs = new wxDbColDef[noCols]; // Points to the first column definition |
da38429d | 214 | |
89894079 VZ |
215 | // Allocate statement handles for the table |
216 | if (!queryOnly) | |
217 | { | |
218 | // Allocate a separate statement handle for performing inserts | |
219 | if (SQLAllocStmt(hdbc, &hstmtInsert) != SQL_SUCCESS) | |
220 | pDb->DispAllErrors(henv, hdbc); | |
221 | // Allocate a separate statement handle for performing deletes | |
222 | if (SQLAllocStmt(hdbc, &hstmtDelete) != SQL_SUCCESS) | |
223 | pDb->DispAllErrors(henv, hdbc); | |
224 | // Allocate a separate statement handle for performing updates | |
225 | if (SQLAllocStmt(hdbc, &hstmtUpdate) != SQL_SUCCESS) | |
226 | pDb->DispAllErrors(henv, hdbc); | |
227 | } | |
228 | // Allocate a separate statement handle for internal use | |
229 | if (SQLAllocStmt(hdbc, &hstmtInternal) != SQL_SUCCESS) | |
230 | pDb->DispAllErrors(henv, hdbc); | |
da38429d | 231 | |
89894079 VZ |
232 | // Set the cursor type for the statement handles |
233 | cursorType = SQL_CURSOR_STATIC; | |
da38429d | 234 | |
89894079 | 235 | if (SQLSetStmtOption(hstmtInternal, SQL_CURSOR_TYPE, cursorType) != SQL_SUCCESS) |
da38429d | 236 | { |
89894079 VZ |
237 | // Check to see if cursor type is supported |
238 | pDb->GetNextError(henv, hdbc, hstmtInternal); | |
4fdae997 | 239 | if (! wxStrcmp(pDb->sqlState, wxT("01S02"))) // Option Value Changed |
3ca6a5f0 | 240 | { |
89894079 VZ |
241 | // Datasource does not support static cursors. Driver |
242 | // will substitute a cursor type. Call SQLGetStmtOption() | |
243 | // to determine which cursor type was selected. | |
244 | if (SQLGetStmtOption(hstmtInternal, SQL_CURSOR_TYPE, &cursorType) != SQL_SUCCESS) | |
3ca6a5f0 | 245 | pDb->DispAllErrors(henv, hdbc, hstmtInternal); |
a2115c88 | 246 | #ifdef DBDEBUG_CONSOLE |
4fdae997 | 247 | cout << wxT("Static cursor changed to: "); |
89894079 | 248 | switch(cursorType) |
3ca6a5f0 BP |
249 | { |
250 | case SQL_CURSOR_FORWARD_ONLY: | |
4fdae997 | 251 | cout << wxT("Forward Only"); |
3ca6a5f0 BP |
252 | break; |
253 | case SQL_CURSOR_STATIC: | |
4fdae997 | 254 | cout << wxT("Static"); |
3ca6a5f0 BP |
255 | break; |
256 | case SQL_CURSOR_KEYSET_DRIVEN: | |
4fdae997 | 257 | cout << wxT("Keyset Driven"); |
3ca6a5f0 BP |
258 | break; |
259 | case SQL_CURSOR_DYNAMIC: | |
4fdae997 | 260 | cout << wxT("Dynamic"); |
3ca6a5f0 BP |
261 | break; |
262 | } | |
89894079 | 263 | cout << endl << endl; |
108106cf | 264 | #endif |
3ca6a5f0 BP |
265 | // BJO20000425 |
266 | if (pDb->FwdOnlyCursors() && cursorType != SQL_CURSOR_FORWARD_ONLY) | |
267 | { | |
268 | // Force the use of a forward only cursor... | |
269 | cursorType = SQL_CURSOR_FORWARD_ONLY; | |
270 | if (SQLSetStmtOption(hstmtInternal, SQL_CURSOR_TYPE, cursorType) != SQL_SUCCESS) | |
271 | { | |
272 | // Should never happen | |
273 | pDb->GetNextError(henv, hdbc, hstmtInternal); | |
a144affe | 274 | return FALSE; |
3ca6a5f0 BP |
275 | } |
276 | } | |
277 | } | |
278 | else | |
279 | { | |
89894079 VZ |
280 | pDb->DispNextError(); |
281 | pDb->DispAllErrors(henv, hdbc, hstmtInternal); | |
3ca6a5f0 | 282 | } |
89894079 | 283 | } |
a2115c88 | 284 | #ifdef DBDEBUG_CONSOLE |
89894079 | 285 | else |
4fdae997 | 286 | cout << wxT("Cursor Type set to STATIC") << endl << endl; |
108106cf | 287 | #endif |
da38429d | 288 | |
89894079 VZ |
289 | if (!queryOnly) |
290 | { | |
291 | // Set the cursor type for the INSERT statement handle | |
292 | if (SQLSetStmtOption(hstmtInsert, SQL_CURSOR_TYPE, SQL_CURSOR_FORWARD_ONLY) != SQL_SUCCESS) | |
293 | pDb->DispAllErrors(henv, hdbc, hstmtInsert); | |
294 | // Set the cursor type for the DELETE statement handle | |
295 | if (SQLSetStmtOption(hstmtDelete, SQL_CURSOR_TYPE, SQL_CURSOR_FORWARD_ONLY) != SQL_SUCCESS) | |
296 | pDb->DispAllErrors(henv, hdbc, hstmtDelete); | |
297 | // Set the cursor type for the UPDATE statement handle | |
298 | if (SQLSetStmtOption(hstmtUpdate, SQL_CURSOR_TYPE, SQL_CURSOR_FORWARD_ONLY) != SQL_SUCCESS) | |
299 | pDb->DispAllErrors(henv, hdbc, hstmtUpdate); | |
300 | } | |
da38429d | 301 | |
89894079 | 302 | // Make the default cursor the active cursor |
a144affe | 303 | hstmtDefault = GetNewCursor(FALSE,FALSE); |
4fdae997 | 304 | wxASSERT(hstmtDefault); |
89894079 | 305 | hstmt = *hstmtDefault; |
108106cf | 306 | |
a144affe | 307 | return TRUE; |
67e9aaa3 | 308 | |
4fdae997 GT |
309 | } // wxDbTable::initialize() |
310 | ||
311 | ||
312 | void wxDbTable::cleanup() | |
108106cf | 313 | { |
1e92909e | 314 | wxString s; |
89894079 VZ |
315 | if (pDb) |
316 | { | |
7d8c3dba | 317 | s.Printf(wxT("wxDbTable destructor (%-20s) tableID:[%6lu] pDb:[%p]"), tableName.c_str(), tableID, pDb); |
4fdae997 | 318 | pDb->WriteSqlLog(s); |
89894079 | 319 | } |
a2115c88 | 320 | |
e041ce57 | 321 | #ifdef __WXDEBUG__ |
89894079 VZ |
322 | if (tableID) |
323 | { | |
a144affe GT |
324 | TablesInUse.DeleteContents(TRUE); |
325 | bool found = FALSE; | |
1e92909e | 326 | |
0b8410f3 | 327 | wxNode *pNode; |
89894079 VZ |
328 | pNode = TablesInUse.First(); |
329 | while (pNode && !found) | |
330 | { | |
8128349e | 331 | if (((wxTablesInUse *)pNode->Data())->tableID == tableID) |
89894079 | 332 | { |
a144affe | 333 | found = TRUE; |
89894079 | 334 | if (!TablesInUse.DeleteNode(pNode)) |
4fdae997 | 335 | wxLogDebug (s,wxT("Unable to delete node!")); |
89894079 VZ |
336 | } |
337 | else | |
338 | pNode = pNode->Next(); | |
339 | } | |
340 | if (!found) | |
341 | { | |
1e92909e | 342 | wxString msg; |
597fadce | 343 | msg.Printf(wxT("Unable to find the tableID in the linked\nlist of tables in use.\n\n%s"),s.c_str()); |
4fdae997 | 344 | wxLogDebug (msg,wxT("NOTICE...")); |
89894079 VZ |
345 | } |
346 | } | |
a2115c88 | 347 | #endif |
e041ce57 | 348 | |
f6bcfd97 | 349 | // Decrement the wxDb table count |
89894079 | 350 | if (pDb) |
f6bcfd97 | 351 | pDb->decrementTableCount(); |
89894079 VZ |
352 | |
353 | // Delete memory allocated for column definitions | |
354 | if (colDefs) | |
355 | delete [] colDefs; | |
356 | ||
357 | // Free statement handles | |
358 | if (!queryOnly) | |
359 | { | |
360 | if (hstmtInsert) | |
7d8c3dba GT |
361 | { |
362 | /* | |
363 | ODBC 3.0 says to use this form | |
364 | if (SQLFreeHandle(*hstmtDel, SQL_DROP) != SQL_SUCCESS) | |
365 | */ | |
89894079 VZ |
366 | if (SQLFreeStmt(hstmtInsert, SQL_DROP) != SQL_SUCCESS) |
367 | pDb->DispAllErrors(henv, hdbc); | |
7d8c3dba | 368 | } |
7c5c05ae | 369 | |
89894079 | 370 | if (hstmtDelete) |
7d8c3dba GT |
371 | { |
372 | /* | |
373 | ODBC 3.0 says to use this form | |
374 | if (SQLFreeHandle(*hstmtDel, SQL_DROP) != SQL_SUCCESS) | |
375 | */ | |
89894079 | 376 | if (SQLFreeStmt(hstmtDelete, SQL_DROP) != SQL_SUCCESS) |
7d8c3dba GT |
377 | pDb->DispAllErrors(henv, hdbc); |
378 | } | |
7c5c05ae | 379 | |
89894079 | 380 | if (hstmtUpdate) |
7d8c3dba GT |
381 | { |
382 | /* | |
383 | ODBC 3.0 says to use this form | |
384 | if (SQLFreeHandle(*hstmtDel, SQL_DROP) != SQL_SUCCESS) | |
385 | */ | |
89894079 VZ |
386 | if (SQLFreeStmt(hstmtUpdate, SQL_DROP) != SQL_SUCCESS) |
387 | pDb->DispAllErrors(henv, hdbc); | |
7d8c3dba | 388 | } |
89894079 | 389 | } |
3ca6a5f0 | 390 | |
89894079 | 391 | if (hstmtInternal) |
7d8c3dba | 392 | { |
89894079 VZ |
393 | if (SQLFreeStmt(hstmtInternal, SQL_DROP) != SQL_SUCCESS) |
394 | pDb->DispAllErrors(henv, hdbc); | |
7d8c3dba | 395 | } |
89894079 VZ |
396 | |
397 | // Delete dynamically allocated cursors | |
398 | if (hstmtDefault) | |
399 | DeleteCursor(hstmtDefault); | |
7c5c05ae | 400 | |
89894079 VZ |
401 | if (hstmtCount) |
402 | DeleteCursor(hstmtCount); | |
882fc8a9 GT |
403 | |
404 | if (m_hstmtGridQuery) | |
405 | DeleteCursor(m_hstmtGridQuery); | |
406 | ||
4fdae997 | 407 | } // wxDbTable::cleanup() |
67e9aaa3 GT |
408 | |
409 | ||
6919c53f GT |
410 | /***************************** PRIVATE FUNCTIONS *****************************/ |
411 | ||
67e9aaa3 | 412 | |
2beca662 | 413 | /********** wxDbTable::bindParams() **********/ |
4fdae997 | 414 | bool wxDbTable::bindParams(bool forUpdate) |
6919c53f | 415 | { |
4fdae997 | 416 | wxASSERT(!queryOnly); |
89894079 | 417 | if (queryOnly) |
a144affe | 418 | return(FALSE); |
da38429d | 419 | |
89894079 | 420 | SWORD fSqlType = 0; |
d171743e | 421 | SDWORD precision = 0; |
89894079 | 422 | SWORD scale = 0; |
da38429d | 423 | |
4fdae997 GT |
424 | // Bind each column of the table that should be bound |
425 | // to a parameter marker | |
6b3f4fb8 | 426 | int i; |
2beca662 GT |
427 | UWORD colNo; |
428 | ||
429 | for (i=0, colNo=1; i < noCols; i++) | |
89894079 | 430 | { |
4fdae997 | 431 | if (forUpdate) |
89894079 | 432 | { |
2beca662 | 433 | if (!colDefs[i].Updateable) |
4fdae997 | 434 | continue; |
89894079 | 435 | } |
4fdae997 | 436 | else |
3ca6a5f0 | 437 | { |
2beca662 | 438 | if (!colDefs[i].InsertAllowed) |
4fdae997 | 439 | continue; |
3ca6a5f0 | 440 | } |
6919c53f | 441 | |
89894079 VZ |
442 | switch(colDefs[i].DbDataType) |
443 | { | |
3ca6a5f0 BP |
444 | case DB_DATA_TYPE_VARCHAR: |
445 | fSqlType = pDb->GetTypeInfVarchar().FsqlType; | |
446 | precision = colDefs[i].SzDataObj; | |
447 | scale = 0; | |
f02d4a64 GT |
448 | if (colDefs[i].Null) |
449 | colDefs[i].CbValue = SQL_NULL_DATA; | |
450 | else | |
451 | colDefs[i].CbValue = SQL_NTS; | |
3ca6a5f0 BP |
452 | break; |
453 | case DB_DATA_TYPE_INTEGER: | |
454 | fSqlType = pDb->GetTypeInfInteger().FsqlType; | |
455 | precision = pDb->GetTypeInfInteger().Precision; | |
456 | scale = 0; | |
f02d4a64 GT |
457 | if (colDefs[i].Null) |
458 | colDefs[i].CbValue = SQL_NULL_DATA; | |
459 | else | |
460 | colDefs[i].CbValue = 0; | |
3ca6a5f0 BP |
461 | break; |
462 | case DB_DATA_TYPE_FLOAT: | |
463 | fSqlType = pDb->GetTypeInfFloat().FsqlType; | |
464 | precision = pDb->GetTypeInfFloat().Precision; | |
da38429d | 465 | scale = pDb->GetTypeInfFloat().MaximumScale; |
3ca6a5f0 BP |
466 | // SQL Sybase Anywhere v5.5 returned a negative number for the |
467 | // MaxScale. This caused ODBC to kick out an error on ibscale. | |
468 | // I check for this here and set the scale = precision. | |
469 | //if (scale < 0) | |
470 | // scale = (short) precision; | |
f02d4a64 GT |
471 | if (colDefs[i].Null) |
472 | colDefs[i].CbValue = SQL_NULL_DATA; | |
473 | else | |
474 | colDefs[i].CbValue = 0; | |
3ca6a5f0 BP |
475 | break; |
476 | case DB_DATA_TYPE_DATE: | |
477 | fSqlType = pDb->GetTypeInfDate().FsqlType; | |
478 | precision = pDb->GetTypeInfDate().Precision; | |
479 | scale = 0; | |
f02d4a64 GT |
480 | if (colDefs[i].Null) |
481 | colDefs[i].CbValue = SQL_NULL_DATA; | |
482 | else | |
483 | colDefs[i].CbValue = 0; | |
3ca6a5f0 | 484 | break; |
bf5423ea GT |
485 | case DB_DATA_TYPE_BLOB: |
486 | fSqlType = pDb->GetTypeInfBlob().FsqlType; | |
5962bdb8 | 487 | precision = -1; |
bf5423ea GT |
488 | scale = 0; |
489 | if (colDefs[i].Null) | |
490 | colDefs[i].CbValue = SQL_NULL_DATA; | |
491 | else | |
492 | colDefs[i].CbValue = SQL_LEN_DATA_AT_EXEC(colDefs[i].SzDataObj); | |
493 | break; | |
3ca6a5f0 | 494 | } |
4fdae997 GT |
495 | if (forUpdate) |
496 | { | |
497 | if (SQLBindParameter(hstmtUpdate, colNo++, SQL_PARAM_INPUT, colDefs[i].SqlCtype, | |
da38429d | 498 | fSqlType, precision, scale, (UCHAR*) colDefs[i].PtrDataObj, |
4fdae997 GT |
499 | precision+1, &colDefs[i].CbValue) != SQL_SUCCESS) |
500 | { | |
501 | return(pDb->DispAllErrors(henv, hdbc, hstmtUpdate)); | |
502 | } | |
503 | } | |
504 | else | |
3ca6a5f0 | 505 | { |
4fdae997 | 506 | if (SQLBindParameter(hstmtInsert, colNo++, SQL_PARAM_INPUT, colDefs[i].SqlCtype, |
da38429d | 507 | fSqlType, precision, scale, (UCHAR*) colDefs[i].PtrDataObj, |
4fdae997 GT |
508 | precision+1,&colDefs[i].CbValue) != SQL_SUCCESS) |
509 | { | |
510 | return(pDb->DispAllErrors(henv, hdbc, hstmtInsert)); | |
511 | } | |
89894079 | 512 | } |
89894079 | 513 | } |
da38429d | 514 | |
89894079 | 515 | // Completed successfully |
a144affe | 516 | return(TRUE); |
6919c53f | 517 | |
4fdae997 GT |
518 | } // wxDbTable::bindParams() |
519 | ||
520 | ||
521 | /********** wxDbTable::bindInsertParams() **********/ | |
522 | bool wxDbTable::bindInsertParams(void) | |
523 | { | |
a144affe | 524 | return bindParams(FALSE); |
4fdae997 GT |
525 | } // wxDbTable::bindInsertParams() |
526 | ||
527 | ||
528 | /********** wxDbTable::bindUpdateParams() **********/ | |
529 | bool wxDbTable::bindUpdateParams(void) | |
530 | { | |
a144affe | 531 | return bindParams(TRUE); |
f6bcfd97 | 532 | } // wxDbTable::bindUpdateParams() |
6919c53f | 533 | |
67e9aaa3 | 534 | |
f6bcfd97 BP |
535 | /********** wxDbTable::bindCols() **********/ |
536 | bool wxDbTable::bindCols(HSTMT cursor) | |
6919c53f | 537 | { |
9d943681 GT |
538 | static SDWORD cb; |
539 | ||
89894079 | 540 | // Bind each column of the table to a memory address for fetching data |
6b3f4fb8 | 541 | UWORD i; |
89894079 | 542 | for (i = 0; i < noCols; i++) |
3ca6a5f0 | 543 | { |
9d943681 | 544 | cb = colDefs[i].CbValue; |
6b3f4fb8 | 545 | if (SQLBindCol(cursor, (UWORD)(i+1), colDefs[i].SqlCtype, (UCHAR*) colDefs[i].PtrDataObj, |
9d943681 | 546 | colDefs[i].SzDataObj, &cb ) != SQL_SUCCESS) |
3ca6a5f0 | 547 | return (pDb->DispAllErrors(henv, hdbc, cursor)); |
3ca6a5f0 | 548 | } |
89894079 VZ |
549 | |
550 | // Completed successfully | |
a144affe | 551 | return(TRUE); |
6919c53f | 552 | |
f6bcfd97 | 553 | } // wxDbTable::bindCols() |
6919c53f | 554 | |
67e9aaa3 | 555 | |
f6bcfd97 BP |
556 | /********** wxDbTable::getRec() **********/ |
557 | bool wxDbTable::getRec(UWORD fetchType) | |
6919c53f | 558 | { |
89894079 VZ |
559 | RETCODE retcode; |
560 | ||
561 | if (!pDb->FwdOnlyCursors()) | |
562 | { | |
563 | // Fetch the NEXT, PREV, FIRST or LAST record, depending on fetchType | |
564 | UDWORD cRowsFetched; | |
565 | UWORD rowStatus; | |
566 | ||
567 | retcode = SQLExtendedFetch(hstmt, fetchType, 0, &cRowsFetched, &rowStatus); | |
5a226de0 | 568 | if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO) |
3ca6a5f0 | 569 | { |
89894079 | 570 | if (retcode == SQL_NO_DATA_FOUND) |
a144affe | 571 | return(FALSE); |
89894079 VZ |
572 | else |
573 | return(pDb->DispAllErrors(henv, hdbc, hstmt)); | |
3ca6a5f0 | 574 | } |
f02d4a64 GT |
575 | else |
576 | { | |
577 | // Set the Null member variable to indicate the Null state | |
578 | // of each column just read in. | |
579 | int i; | |
580 | for (i = 0; i < noCols; i++) | |
581 | colDefs[i].Null = (colDefs[i].CbValue == SQL_NULL_DATA); | |
582 | } | |
89894079 VZ |
583 | } |
584 | else | |
585 | { | |
586 | // Fetch the next record from the record set | |
587 | retcode = SQLFetch(hstmt); | |
588 | if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO) | |
589 | { | |
590 | if (retcode == SQL_NO_DATA_FOUND) | |
a144affe | 591 | return(FALSE); |
89894079 VZ |
592 | else |
593 | return(pDb->DispAllErrors(henv, hdbc, hstmt)); | |
594 | } | |
f02d4a64 GT |
595 | else |
596 | { | |
597 | // Set the Null member variable to indicate the Null state | |
598 | // of each column just read in. | |
599 | int i; | |
600 | for (i = 0; i < noCols; i++) | |
601 | colDefs[i].Null = (colDefs[i].CbValue == SQL_NULL_DATA); | |
602 | } | |
89894079 VZ |
603 | } |
604 | ||
605 | // Completed successfully | |
a144affe | 606 | return(TRUE); |
6919c53f | 607 | |
f6bcfd97 | 608 | } // wxDbTable::getRec() |
6919c53f | 609 | |
67e9aaa3 | 610 | |
f6bcfd97 | 611 | /********** wxDbTable::execDelete() **********/ |
4fdae997 | 612 | bool wxDbTable::execDelete(const wxString &pSqlStmt) |
6919c53f | 613 | { |
2beca662 GT |
614 | RETCODE retcode; |
615 | ||
89894079 | 616 | // Execute the DELETE statement |
2beca662 | 617 | retcode = SQLExecDirect(hstmtDelete, (UCHAR FAR *) pSqlStmt.c_str(), SQL_NTS); |
6919c53f | 618 | |
2beca662 GT |
619 | if (retcode == SQL_SUCCESS || |
620 | retcode == SQL_NO_DATA_FOUND || | |
621 | retcode == SQL_SUCCESS_WITH_INFO) | |
622 | { | |
623 | // Record deleted successfully | |
a144affe | 624 | return(TRUE); |
2beca662 GT |
625 | } |
626 | ||
627 | // Problem deleting record | |
628 | return(pDb->DispAllErrors(henv, hdbc, hstmtDelete)); | |
6919c53f | 629 | |
f6bcfd97 | 630 | } // wxDbTable::execDelete() |
6919c53f | 631 | |
67e9aaa3 | 632 | |
f6bcfd97 | 633 | /********** wxDbTable::execUpdate() **********/ |
4fdae997 | 634 | bool wxDbTable::execUpdate(const wxString &pSqlStmt) |
6919c53f | 635 | { |
2beca662 GT |
636 | RETCODE retcode; |
637 | ||
89894079 | 638 | // Execute the UPDATE statement |
2beca662 | 639 | retcode = SQLExecDirect(hstmtUpdate, (UCHAR FAR *) pSqlStmt.c_str(), SQL_NTS); |
6919c53f | 640 | |
2beca662 GT |
641 | if (retcode == SQL_SUCCESS || |
642 | retcode == SQL_NO_DATA_FOUND || | |
643 | retcode == SQL_SUCCESS_WITH_INFO) | |
644 | { | |
645 | // Record updated successfully | |
a144affe | 646 | return(TRUE); |
2beca662 | 647 | } |
5962bdb8 JS |
648 | else if (retcode == SQL_NEED_DATA) |
649 | { | |
650 | PTR pParmID; | |
651 | while ((retcode = SQLParamData(hstmtUpdate, &pParmID) == SQL_NEED_DATA)) | |
652 | { | |
653 | // Find the parameter | |
654 | int i; | |
655 | for (i=0; i < noCols; i++) | |
656 | { | |
657 | if (colDefs[i].PtrDataObj == pParmID) | |
658 | { | |
659 | // We found it. Store the parameter. | |
660 | retcode = SQLPutData(hstmtUpdate, pParmID, colDefs[i].SzDataObj); | |
661 | if (retcode != SQL_SUCCESS) | |
662 | { | |
663 | pDb->DispNextError(); | |
664 | return pDb->DispAllErrors(henv, hdbc, hstmtUpdate); | |
665 | } | |
666 | break; | |
667 | } | |
668 | } | |
669 | } | |
670 | if (retcode == SQL_SUCCESS || | |
671 | retcode == SQL_NO_DATA_FOUND || | |
672 | retcode == SQL_SUCCESS_WITH_INFO) | |
673 | { | |
674 | // Record updated successfully | |
675 | return(TRUE); | |
676 | } | |
677 | } | |
2beca662 GT |
678 | |
679 | // Problem updating record | |
680 | return(pDb->DispAllErrors(henv, hdbc, hstmtUpdate)); | |
6919c53f | 681 | |
f6bcfd97 | 682 | } // wxDbTable::execUpdate() |
6919c53f | 683 | |
67e9aaa3 | 684 | |
f6bcfd97 | 685 | /********** wxDbTable::query() **********/ |
4fdae997 | 686 | bool wxDbTable::query(int queryType, bool forUpdate, bool distinct, const wxString &pSqlStmt) |
6919c53f | 687 | { |
4fdae997 | 688 | wxString sqlStmt; |
6919c53f | 689 | |
89894079 VZ |
690 | if (forUpdate) |
691 | // The user may wish to select for update, but the DBMS may not be capable | |
692 | selectForUpdate = CanSelectForUpdate(); | |
693 | else | |
a144affe | 694 | selectForUpdate = FALSE; |
6919c53f | 695 | |
89894079 VZ |
696 | // Set the SQL SELECT string |
697 | if (queryType != DB_SELECT_STATEMENT) // A select statement was not passed in, | |
3ca6a5f0 | 698 | { // so generate a select statement. |
f6bcfd97 | 699 | BuildSelectStmt(sqlStmt, queryType, distinct); |
89894079 | 700 | pDb->WriteSqlLog(sqlStmt); |
3ca6a5f0 | 701 | } |
e93a3a18 | 702 | |
89894079 | 703 | // Make sure the cursor is closed first |
e93a3a18 | 704 | if (!CloseCursor(hstmt)) |
a144affe | 705 | return(FALSE); |
6919c53f | 706 | |
89894079 | 707 | // Execute the SQL SELECT statement |
da38429d | 708 | int retcode; |
4fdae997 | 709 | retcode = SQLExecDirect(hstmt, (UCHAR FAR *) (queryType == DB_SELECT_STATEMENT ? pSqlStmt.c_str() : sqlStmt.c_str()), SQL_NTS); |
89894079 | 710 | if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO) |
3ca6a5f0 | 711 | return(pDb->DispAllErrors(henv, hdbc, hstmt)); |
6919c53f | 712 | |
89894079 | 713 | // Completed successfully |
a144affe | 714 | return(TRUE); |
6919c53f | 715 | |
f6bcfd97 | 716 | } // wxDbTable::query() |
6919c53f GT |
717 | |
718 | ||
67e9aaa3 GT |
719 | /***************************** PUBLIC FUNCTIONS *****************************/ |
720 | ||
6919c53f | 721 | |
f6bcfd97 | 722 | /********** wxDbTable::Open() **********/ |
1454d4e6 | 723 | bool wxDbTable::Open(bool checkPrivileges, bool checkTableExists) |
108106cf | 724 | { |
89894079 | 725 | if (!pDb) |
da38429d | 726 | return FALSE; |
3ca6a5f0 | 727 | |
89894079 | 728 | int i; |
1e92909e | 729 | wxString sqlStmt; |
f02d4a64 | 730 | wxString s; |
882fc8a9 GT |
731 | // int NumKeyCols=0; |
732 | ||
733 | // Calculate the maximum size of the concatenated | |
734 | // keys for use with wxDbGrid | |
735 | m_keysize = 0; | |
736 | for (i=0; i < noCols; i++) | |
737 | { | |
738 | if (colDefs[i].KeyField) | |
739 | { | |
740 | // NumKeyCols++; | |
741 | m_keysize += colDefs[i].SzDataObj; | |
742 | } | |
743 | } | |
89894079 | 744 | |
4fdae997 | 745 | s.Empty(); |
89894079 | 746 | // Verify that the table exists in the database |
6b3f4fb8 | 747 | if (checkTableExists && !pDb->TableExists(tableName, pDb->GetUsername(), tablePath)) |
89894079 | 748 | { |
4fdae997 GT |
749 | s = wxT("Table/view does not exist in the database"); |
750 | if ( *(pDb->dbInf.accessibleTables) == wxT('Y')) | |
751 | s += wxT(", or you have no permissions.\n"); | |
e16143f6 | 752 | else |
4fdae997 | 753 | s += wxT(".\n"); |
f02d4a64 GT |
754 | } |
755 | else if (checkPrivileges) | |
756 | { | |
757 | // Verify the user has rights to access the table. | |
da38429d | 758 | // Shortcut boolean evaluation to optimize out call to |
f02d4a64 GT |
759 | // TablePrivileges |
760 | // | |
761 | // Unfortunately this optimization doesn't seem to be | |
762 | // reliable! | |
da38429d | 763 | if (// *(pDb->dbInf.accessibleTables) == 'N' && |
6b3f4fb8 | 764 | !pDb->TablePrivileges(tableName,wxT("SELECT"), pDb->GetUsername(), pDb->GetUsername(), tablePath)) |
4fdae997 | 765 | s = wxT("Current logged in user does not have sufficient privileges to access this table.\n"); |
f02d4a64 GT |
766 | } |
767 | ||
768 | if (!s.IsEmpty()) | |
769 | { | |
770 | wxString p; | |
771 | ||
4fdae997 | 772 | if (!tablePath.IsEmpty()) |
7d8c3dba | 773 | p.Printf(wxT("Error opening '%s/%s'.\n"),tablePath.c_str(),tableName.c_str()); |
e16143f6 | 774 | else |
7d8c3dba | 775 | p.Printf(wxT("Error opening '%s'.\n"), tableName.c_str()); |
f02d4a64 GT |
776 | |
777 | p += s; | |
778 | pDb->LogError(p.GetData()); | |
779 | ||
a144affe | 780 | return(FALSE); |
89894079 VZ |
781 | } |
782 | ||
783 | // Bind the member variables for field exchange between | |
f6bcfd97 | 784 | // the wxDbTable object and the ODBC record. |
89894079 VZ |
785 | if (!queryOnly) |
786 | { | |
787 | if (!bindInsertParams()) // Inserts | |
a144affe | 788 | return(FALSE); |
da38429d | 789 | |
89894079 | 790 | if (!bindUpdateParams()) // Updates |
a144affe | 791 | return(FALSE); |
89894079 | 792 | } |
3ca6a5f0 | 793 | |
89894079 | 794 | if (!bindCols(*hstmtDefault)) // Selects |
a144affe | 795 | return(FALSE); |
da38429d | 796 | |
89894079 | 797 | if (!bindCols(hstmtInternal)) // Internal use only |
a144affe | 798 | return(FALSE); |
f02d4a64 GT |
799 | |
800 | /* | |
89894079 VZ |
801 | * Do NOT bind the hstmtCount cursor!!! |
802 | */ | |
803 | ||
804 | // Build an insert statement using parameter markers | |
805 | if (!queryOnly && noCols > 0) | |
806 | { | |
a144affe | 807 | bool needComma = FALSE; |
1d6f2348 VZ |
808 | sqlStmt.Printf(wxT("INSERT INTO %s ("), |
809 | pDb->SQLTableName(tableName.c_str()).c_str()); | |
89894079 VZ |
810 | for (i = 0; i < noCols; i++) |
811 | { | |
812 | if (! colDefs[i].InsertAllowed) | |
813 | continue; | |
814 | if (needComma) | |
4fdae997 | 815 | sqlStmt += wxT(","); |
243d4b36 GT |
816 | sqlStmt += pDb->SQLColumnName(colDefs[i].ColName); |
817 | // sqlStmt += colDefs[i].ColName; | |
a144affe | 818 | needComma = TRUE; |
89894079 | 819 | } |
a144affe | 820 | needComma = FALSE; |
4fdae997 | 821 | sqlStmt += wxT(") VALUES ("); |
f6bcfd97 | 822 | |
3ca6a5f0 | 823 | int insertableCount = 0; |
f6bcfd97 | 824 | |
89894079 VZ |
825 | for (i = 0; i < noCols; i++) |
826 | { | |
827 | if (! colDefs[i].InsertAllowed) | |
828 | continue; | |
829 | if (needComma) | |
4fdae997 GT |
830 | sqlStmt += wxT(","); |
831 | sqlStmt += wxT("?"); | |
a144affe | 832 | needComma = TRUE; |
3ca6a5f0 | 833 | insertableCount++; |
89894079 | 834 | } |
4fdae997 | 835 | sqlStmt += wxT(")"); |
da38429d | 836 | |
89894079 | 837 | // Prepare the insert statement for execution |
da38429d | 838 | if (insertableCount) |
3ca6a5f0 | 839 | { |
f6bcfd97 BP |
840 | if (SQLPrepare(hstmtInsert, (UCHAR FAR *) sqlStmt.c_str(), SQL_NTS) != SQL_SUCCESS) |
841 | return(pDb->DispAllErrors(henv, hdbc, hstmtInsert)); | |
842 | } | |
da38429d | 843 | else |
a144affe | 844 | insertable= FALSE; |
89894079 | 845 | } |
da38429d | 846 | |
89894079 | 847 | // Completed successfully |
a144affe | 848 | return(TRUE); |
108106cf | 849 | |
f6bcfd97 | 850 | } // wxDbTable::Open() |
108106cf | 851 | |
67e9aaa3 | 852 | |
f6bcfd97 BP |
853 | /********** wxDbTable::Query() **********/ |
854 | bool wxDbTable::Query(bool forUpdate, bool distinct) | |
108106cf JS |
855 | { |
856 | ||
89894079 | 857 | return(query(DB_SELECT_WHERE, forUpdate, distinct)); |
108106cf | 858 | |
f6bcfd97 | 859 | } // wxDbTable::Query() |
108106cf | 860 | |
67e9aaa3 | 861 | |
f6bcfd97 | 862 | /********** wxDbTable::QueryBySqlStmt() **********/ |
4fdae997 | 863 | bool wxDbTable::QueryBySqlStmt(const wxString &pSqlStmt) |
108106cf | 864 | { |
89894079 | 865 | pDb->WriteSqlLog(pSqlStmt); |
108106cf | 866 | |
a144affe | 867 | return(query(DB_SELECT_STATEMENT, FALSE, FALSE, pSqlStmt)); |
108106cf | 868 | |
f6bcfd97 | 869 | } // wxDbTable::QueryBySqlStmt() |
108106cf | 870 | |
67e9aaa3 | 871 | |
f6bcfd97 BP |
872 | /********** wxDbTable::QueryMatching() **********/ |
873 | bool wxDbTable::QueryMatching(bool forUpdate, bool distinct) | |
108106cf JS |
874 | { |
875 | ||
89894079 | 876 | return(query(DB_SELECT_MATCHING, forUpdate, distinct)); |
108106cf | 877 | |
f6bcfd97 | 878 | } // wxDbTable::QueryMatching() |
108106cf | 879 | |
67e9aaa3 | 880 | |
f6bcfd97 BP |
881 | /********** wxDbTable::QueryOnKeyFields() **********/ |
882 | bool wxDbTable::QueryOnKeyFields(bool forUpdate, bool distinct) | |
108106cf JS |
883 | { |
884 | ||
89894079 | 885 | return(query(DB_SELECT_KEYFIELDS, forUpdate, distinct)); |
108106cf | 886 | |
f6bcfd97 | 887 | } // wxDbTable::QueryOnKeyFields() |
108106cf | 888 | |
67e9aaa3 | 889 | |
f6bcfd97 BP |
890 | /********** wxDbTable::GetPrev() **********/ |
891 | bool wxDbTable::GetPrev(void) | |
a3439c7d | 892 | { |
89894079 VZ |
893 | if (pDb->FwdOnlyCursors()) |
894 | { | |
f6bcfd97 | 895 | wxFAIL_MSG(wxT("GetPrev()::Backward scrolling cursors are not enabled for this instance of wxDbTable")); |
a144affe | 896 | return FALSE; |
89894079 VZ |
897 | } |
898 | else | |
899 | return(getRec(SQL_FETCH_PRIOR)); | |
3ca6a5f0 | 900 | |
f6bcfd97 | 901 | } // wxDbTable::GetPrev() |
a3439c7d | 902 | |
67e9aaa3 | 903 | |
f6bcfd97 BP |
904 | /********** wxDbTable::operator-- **********/ |
905 | bool wxDbTable::operator--(int) | |
a3439c7d | 906 | { |
89894079 VZ |
907 | if (pDb->FwdOnlyCursors()) |
908 | { | |
f6bcfd97 | 909 | wxFAIL_MSG(wxT("operator--:Backward scrolling cursors are not enabled for this instance of wxDbTable")); |
a144affe | 910 | return FALSE; |
89894079 VZ |
911 | } |
912 | else | |
913 | return(getRec(SQL_FETCH_PRIOR)); | |
3ca6a5f0 | 914 | |
f6bcfd97 | 915 | } // wxDbTable::operator-- |
a3439c7d | 916 | |
67e9aaa3 | 917 | |
f6bcfd97 BP |
918 | /********** wxDbTable::GetFirst() **********/ |
919 | bool wxDbTable::GetFirst(void) | |
a3439c7d | 920 | { |
89894079 VZ |
921 | if (pDb->FwdOnlyCursors()) |
922 | { | |
f6bcfd97 | 923 | wxFAIL_MSG(wxT("GetFirst():Backward scrolling cursors are not enabled for this instance of wxDbTable")); |
a144affe | 924 | return FALSE; |
89894079 VZ |
925 | } |
926 | else | |
927 | return(getRec(SQL_FETCH_FIRST)); | |
3ca6a5f0 | 928 | |
f6bcfd97 | 929 | } // wxDbTable::GetFirst() |
a3439c7d | 930 | |
67e9aaa3 | 931 | |
f6bcfd97 BP |
932 | /********** wxDbTable::GetLast() **********/ |
933 | bool wxDbTable::GetLast(void) | |
a3439c7d | 934 | { |
89894079 VZ |
935 | if (pDb->FwdOnlyCursors()) |
936 | { | |
f6bcfd97 | 937 | wxFAIL_MSG(wxT("GetLast()::Backward scrolling cursors are not enabled for this instance of wxDbTable")); |
a144affe | 938 | return FALSE; |
89894079 | 939 | } |
da38429d | 940 | else |
89894079 | 941 | return(getRec(SQL_FETCH_LAST)); |
3ca6a5f0 | 942 | |
f6bcfd97 | 943 | } // wxDbTable::GetLast() |
a3439c7d | 944 | |
67e9aaa3 | 945 | |
4fdae997 GT |
946 | /********** wxDbTable::BuildDeleteStmt() **********/ |
947 | void wxDbTable::BuildDeleteStmt(wxString &pSqlStmt, int typeOfDel, const wxString &pWhereClause) | |
108106cf | 948 | { |
4fdae997 GT |
949 | wxASSERT(!queryOnly); |
950 | if (queryOnly) | |
951 | return; | |
952 | ||
953 | wxString whereClause; | |
89894079 | 954 | |
4fdae997 GT |
955 | whereClause.Empty(); |
956 | ||
957 | // Handle the case of DeleteWhere() and the where clause is blank. It should | |
958 | // delete all records from the database in this case. | |
959 | if (typeOfDel == DB_DEL_WHERE && (pWhereClause.Length() == 0)) | |
960 | { | |
1d6f2348 VZ |
961 | pSqlStmt.Printf(wxT("DELETE FROM %s"), |
962 | pDb->SQLTableName(tableName.c_str()).c_str()); | |
4fdae997 GT |
963 | return; |
964 | } | |
965 | ||
1d6f2348 VZ |
966 | pSqlStmt.Printf(wxT("DELETE FROM %s WHERE "), |
967 | pDb->SQLTableName(tableName.c_str()).c_str()); | |
4fdae997 GT |
968 | |
969 | // Append the WHERE clause to the SQL DELETE statement | |
970 | switch(typeOfDel) | |
971 | { | |
972 | case DB_DEL_KEYFIELDS: | |
973 | // If the datasource supports the ROWID column, build | |
974 | // the where on ROWID for efficiency purposes. | |
975 | // e.g. DELETE FROM PARTS WHERE ROWID = '111.222.333' | |
976 | if (CanUpdByROWID()) | |
977 | { | |
978 | SDWORD cb; | |
979 | wxChar rowid[wxDB_ROWID_LEN+1]; | |
980 | ||
981 | // Get the ROWID value. If not successful retreiving the ROWID, | |
982 | // simply fall down through the code and build the WHERE clause | |
983 | // based on the key fields. | |
6b3f4fb8 | 984 | if (SQLGetData(hstmt, (UWORD)(noCols+1), SQL_C_CHAR, (UCHAR*) rowid, wxDB_ROWID_LEN, &cb) == SQL_SUCCESS) |
4fdae997 GT |
985 | { |
986 | pSqlStmt += wxT("ROWID = '"); | |
987 | pSqlStmt += rowid; | |
988 | pSqlStmt += wxT("'"); | |
989 | break; | |
990 | } | |
991 | } | |
992 | // Unable to delete by ROWID, so build a WHERE | |
993 | // clause based on the keyfields. | |
994 | BuildWhereClause(whereClause, DB_WHERE_KEYFIELDS); | |
995 | pSqlStmt += whereClause; | |
996 | break; | |
997 | case DB_DEL_WHERE: | |
998 | pSqlStmt += pWhereClause; | |
999 | break; | |
1000 | case DB_DEL_MATCHING: | |
1001 | BuildWhereClause(whereClause, DB_WHERE_MATCHING); | |
1002 | pSqlStmt += whereClause; | |
1003 | break; | |
1004 | } | |
1005 | ||
1006 | } // BuildDeleteStmt() | |
1007 | ||
1008 | ||
1009 | /***** DEPRECATED: use wxDbTable::BuildDeleteStmt(wxString &....) form *****/ | |
1010 | void wxDbTable::BuildDeleteStmt(wxChar *pSqlStmt, int typeOfDel, const wxString &pWhereClause) | |
1011 | { | |
1012 | wxString tempSqlStmt; | |
1013 | BuildDeleteStmt(tempSqlStmt, typeOfDel, pWhereClause); | |
1014 | wxStrcpy(pSqlStmt, tempSqlStmt); | |
1015 | } // wxDbTable::BuildDeleteStmt() | |
1016 | ||
1017 | ||
1018 | /********** wxDbTable::BuildSelectStmt() **********/ | |
1019 | void wxDbTable::BuildSelectStmt(wxString &pSqlStmt, int typeOfSelect, bool distinct) | |
1020 | { | |
1021 | wxString whereClause; | |
1022 | whereClause.Empty(); | |
89894079 VZ |
1023 | |
1024 | // Build a select statement to query the database | |
4fdae997 | 1025 | pSqlStmt = wxT("SELECT "); |
89894079 VZ |
1026 | |
1027 | // SELECT DISTINCT values only? | |
1028 | if (distinct) | |
4fdae997 | 1029 | pSqlStmt += wxT("DISTINCT "); |
89894079 VZ |
1030 | |
1031 | // Was a FROM clause specified to join tables to the base table? | |
1032 | // Available for ::Query() only!!! | |
a144affe | 1033 | bool appendFromClause = FALSE; |
f6bcfd97 | 1034 | #if wxODBC_BACKWARD_COMPATABILITY |
89894079 | 1035 | if (typeOfSelect == DB_SELECT_WHERE && from && wxStrlen(from)) |
a144affe | 1036 | appendFromClause = TRUE; |
f6bcfd97 BP |
1037 | #else |
1038 | if (typeOfSelect == DB_SELECT_WHERE && from.Length()) | |
a144affe | 1039 | appendFromClause = TRUE; |
f6bcfd97 | 1040 | #endif |
89894079 VZ |
1041 | |
1042 | // Add the column list | |
1043 | int i; | |
e7c9692f | 1044 | wxString tStr; |
89894079 VZ |
1045 | for (i = 0; i < noCols; i++) |
1046 | { | |
e7c9692f | 1047 | tStr = colDefs[i].ColName; |
89894079 | 1048 | // If joining tables, the base table column names must be qualified to avoid ambiguity |
e7c9692f | 1049 | if ((appendFromClause || pDb->Dbms() == dbmsACCESS) && !tStr.Find(wxT('.'))) |
89894079 | 1050 | { |
243d4b36 | 1051 | pSqlStmt += pDb->SQLTableName(queryTableName.c_str()); |
4fdae997 | 1052 | pSqlStmt += wxT("."); |
89894079 | 1053 | } |
243d4b36 | 1054 | pSqlStmt += pDb->SQLColumnName(colDefs[i].ColName); |
89894079 | 1055 | if (i + 1 < noCols) |
4fdae997 | 1056 | pSqlStmt += wxT(","); |
89894079 VZ |
1057 | } |
1058 | ||
1059 | // If the datasource supports ROWID, get this column as well. Exception: Don't retrieve | |
1060 | // the ROWID if querying distinct records. The rowid will always be unique. | |
1061 | if (!distinct && CanUpdByROWID()) | |
1062 | { | |
1063 | // If joining tables, the base table column names must be qualified to avoid ambiguity | |
2beca662 | 1064 | if (appendFromClause || pDb->Dbms() == dbmsACCESS) |
89894079 | 1065 | { |
4fdae997 | 1066 | pSqlStmt += wxT(","); |
243d4b36 GT |
1067 | pSqlStmt += pDb->SQLTableName(queryTableName); |
1068 | // pSqlStmt += queryTableName; | |
4fdae997 | 1069 | pSqlStmt += wxT(".ROWID"); |
89894079 VZ |
1070 | } |
1071 | else | |
4fdae997 | 1072 | pSqlStmt += wxT(",ROWID"); |
89894079 VZ |
1073 | } |
1074 | ||
1075 | // Append the FROM tablename portion | |
4fdae997 | 1076 | pSqlStmt += wxT(" FROM "); |
243d4b36 GT |
1077 | pSqlStmt += pDb->SQLTableName(queryTableName); |
1078 | // pSqlStmt += queryTableName; | |
89894079 VZ |
1079 | |
1080 | // Sybase uses the HOLDLOCK keyword to lock a record during query. | |
1081 | // The HOLDLOCK keyword follows the table name in the from clause. | |
1082 | // Each table in the from clause must specify HOLDLOCK or | |
1083 | // NOHOLDLOCK (the default). Note: The "FOR UPDATE" clause | |
1084 | // is parsed but ignored in SYBASE Transact-SQL. | |
1085 | if (selectForUpdate && (pDb->Dbms() == dbmsSYBASE_ASA || pDb->Dbms() == dbmsSYBASE_ASE)) | |
4fdae997 | 1086 | pSqlStmt += wxT(" HOLDLOCK"); |
89894079 VZ |
1087 | |
1088 | if (appendFromClause) | |
4fdae997 | 1089 | pSqlStmt += from; |
89894079 VZ |
1090 | |
1091 | // Append the WHERE clause. Either append the where clause for the class | |
1092 | // or build a where clause. The typeOfSelect determines this. | |
1093 | switch(typeOfSelect) | |
1094 | { | |
3ca6a5f0 | 1095 | case DB_SELECT_WHERE: |
f6bcfd97 | 1096 | #if wxODBC_BACKWARD_COMPATABILITY |
3ca6a5f0 | 1097 | if (where && wxStrlen(where)) // May not want a where clause!!! |
f6bcfd97 | 1098 | #else |
3ca6a5f0 | 1099 | if (where.Length()) // May not want a where clause!!! |
f6bcfd97 | 1100 | #endif |
3ca6a5f0 | 1101 | { |
4fdae997 GT |
1102 | pSqlStmt += wxT(" WHERE "); |
1103 | pSqlStmt += where; | |
3ca6a5f0 BP |
1104 | } |
1105 | break; | |
1106 | case DB_SELECT_KEYFIELDS: | |
1107 | BuildWhereClause(whereClause, DB_WHERE_KEYFIELDS); | |
4fdae997 | 1108 | if (whereClause.Length()) |
3ca6a5f0 | 1109 | { |
4fdae997 GT |
1110 | pSqlStmt += wxT(" WHERE "); |
1111 | pSqlStmt += whereClause; | |
3ca6a5f0 BP |
1112 | } |
1113 | break; | |
1114 | case DB_SELECT_MATCHING: | |
1115 | BuildWhereClause(whereClause, DB_WHERE_MATCHING); | |
4fdae997 | 1116 | if (whereClause.Length()) |
3ca6a5f0 | 1117 | { |
4fdae997 GT |
1118 | pSqlStmt += wxT(" WHERE "); |
1119 | pSqlStmt += whereClause; | |
3ca6a5f0 BP |
1120 | } |
1121 | break; | |
89894079 VZ |
1122 | } |
1123 | ||
1124 | // Append the ORDER BY clause | |
f6bcfd97 | 1125 | #if wxODBC_BACKWARD_COMPATABILITY |
89894079 | 1126 | if (orderBy && wxStrlen(orderBy)) |
f6bcfd97 | 1127 | #else |
3ca6a5f0 | 1128 | if (orderBy.Length()) |
f6bcfd97 | 1129 | #endif |
89894079 | 1130 | { |
4fdae997 GT |
1131 | pSqlStmt += wxT(" ORDER BY "); |
1132 | pSqlStmt += orderBy; | |
89894079 VZ |
1133 | } |
1134 | ||
1135 | // SELECT FOR UPDATE if told to do so and the datasource is capable. Sybase | |
1136 | // parses the FOR UPDATE clause but ignores it. See the comment above on the | |
1137 | // HOLDLOCK for Sybase. | |
1138 | if (selectForUpdate && CanSelectForUpdate()) | |
4fdae997 GT |
1139 | pSqlStmt += wxT(" FOR UPDATE"); |
1140 | ||
1141 | } // wxDbTable::BuildSelectStmt() | |
1142 | ||
108106cf | 1143 | |
4fdae997 GT |
1144 | /***** DEPRECATED: use wxDbTable::BuildSelectStmt(wxString &....) form *****/ |
1145 | void wxDbTable::BuildSelectStmt(wxChar *pSqlStmt, int typeOfSelect, bool distinct) | |
1146 | { | |
1147 | wxString tempSqlStmt; | |
1148 | BuildSelectStmt(tempSqlStmt, typeOfSelect, distinct); | |
1149 | wxStrcpy(pSqlStmt, tempSqlStmt); | |
f6bcfd97 | 1150 | } // wxDbTable::BuildSelectStmt() |
108106cf | 1151 | |
67e9aaa3 | 1152 | |
4fdae997 GT |
1153 | /********** wxDbTable::BuildUpdateStmt() **********/ |
1154 | void wxDbTable::BuildUpdateStmt(wxString &pSqlStmt, int typeOfUpd, const wxString &pWhereClause) | |
1155 | { | |
1156 | wxASSERT(!queryOnly); | |
1157 | if (queryOnly) | |
1158 | return; | |
1159 | ||
1160 | wxString whereClause; | |
1161 | whereClause.Empty(); | |
1162 | ||
a144affe | 1163 | bool firstColumn = TRUE; |
4fdae997 | 1164 | |
1d6f2348 | 1165 | pSqlStmt.Printf(wxT("UPDATE %s SET "), |
bb064193 | 1166 | pDb->SQLTableName(tableName.c_str()).c_str()); |
4fdae997 GT |
1167 | |
1168 | // Append a list of columns to be updated | |
1169 | int i; | |
1170 | for (i = 0; i < noCols; i++) | |
1171 | { | |
1172 | // Only append Updateable columns | |
1173 | if (colDefs[i].Updateable) | |
1174 | { | |
9082f1a9 | 1175 | if (!firstColumn) |
4fdae997 GT |
1176 | pSqlStmt += wxT(","); |
1177 | else | |
a144affe | 1178 | firstColumn = FALSE; |
243d4b36 GT |
1179 | |
1180 | pSqlStmt += pDb->SQLColumnName(colDefs[i].ColName); | |
1181 | // pSqlStmt += colDefs[i].ColName; | |
4fdae997 GT |
1182 | pSqlStmt += wxT(" = ?"); |
1183 | } | |
1184 | } | |
1185 | ||
1186 | // Append the WHERE clause to the SQL UPDATE statement | |
1187 | pSqlStmt += wxT(" WHERE "); | |
1188 | switch(typeOfUpd) | |
1189 | { | |
1190 | case DB_UPD_KEYFIELDS: | |
1191 | // If the datasource supports the ROWID column, build | |
1192 | // the where on ROWID for efficiency purposes. | |
1193 | // e.g. UPDATE PARTS SET Col1 = ?, Col2 = ? WHERE ROWID = '111.222.333' | |
1194 | if (CanUpdByROWID()) | |
1195 | { | |
1196 | SDWORD cb; | |
1197 | wxChar rowid[wxDB_ROWID_LEN+1]; | |
1198 | ||
1199 | // Get the ROWID value. If not successful retreiving the ROWID, | |
1200 | // simply fall down through the code and build the WHERE clause | |
1201 | // based on the key fields. | |
6b3f4fb8 | 1202 | if (SQLGetData(hstmt, (UWORD)(noCols+1), SQL_C_CHAR, (UCHAR*) rowid, wxDB_ROWID_LEN, &cb) == SQL_SUCCESS) |
4fdae997 GT |
1203 | { |
1204 | pSqlStmt += wxT("ROWID = '"); | |
1205 | pSqlStmt += rowid; | |
1206 | pSqlStmt += wxT("'"); | |
1207 | break; | |
1208 | } | |
1209 | } | |
1210 | // Unable to delete by ROWID, so build a WHERE | |
1211 | // clause based on the keyfields. | |
1212 | BuildWhereClause(whereClause, DB_WHERE_KEYFIELDS); | |
1213 | pSqlStmt += whereClause; | |
1214 | break; | |
1215 | case DB_UPD_WHERE: | |
1216 | pSqlStmt += pWhereClause; | |
1217 | break; | |
1218 | } | |
1219 | } // BuildUpdateStmt() | |
1220 | ||
1221 | ||
1222 | /***** DEPRECATED: use wxDbTable::BuildUpdateStmt(wxString &....) form *****/ | |
1223 | void wxDbTable::BuildUpdateStmt(wxChar *pSqlStmt, int typeOfUpd, const wxString &pWhereClause) | |
1224 | { | |
1225 | wxString tempSqlStmt; | |
1226 | BuildUpdateStmt(tempSqlStmt, typeOfUpd, pWhereClause); | |
1227 | wxStrcpy(pSqlStmt, tempSqlStmt); | |
1228 | } // BuildUpdateStmt() | |
1229 | ||
1230 | ||
1231 | /********** wxDbTable::BuildWhereClause() **********/ | |
1232 | void wxDbTable::BuildWhereClause(wxString &pWhereClause, int typeOfWhere, | |
1233 | const wxString &qualTableName, bool useLikeComparison) | |
1234 | /* | |
1235 | * Note: BuildWhereClause() currently ignores timestamp columns. | |
1236 | * They are not included as part of the where clause. | |
1237 | */ | |
1238 | { | |
a144affe | 1239 | bool moreThanOneColumn = FALSE; |
4fdae997 GT |
1240 | wxString colValue; |
1241 | ||
1242 | // Loop through the columns building a where clause as you go | |
e7c9692f GT |
1243 | int colNo; |
1244 | for (colNo = 0; colNo < noCols; colNo++) | |
4fdae997 GT |
1245 | { |
1246 | // Determine if this column should be included in the WHERE clause | |
e7c9692f GT |
1247 | if ((typeOfWhere == DB_WHERE_KEYFIELDS && colDefs[colNo].KeyField) || |
1248 | (typeOfWhere == DB_WHERE_MATCHING && (!IsColNull(colNo)))) | |
4fdae997 GT |
1249 | { |
1250 | // Skip over timestamp columns | |
e7c9692f | 1251 | if (colDefs[colNo].SqlCtype == SQL_C_TIMESTAMP) |
4fdae997 GT |
1252 | continue; |
1253 | // If there is more than 1 column, join them with the keyword "AND" | |
1254 | if (moreThanOneColumn) | |
1255 | pWhereClause += wxT(" AND "); | |
1256 | else | |
a144affe | 1257 | moreThanOneColumn = TRUE; |
e7c9692f | 1258 | |
4fdae997 | 1259 | // Concatenate where phrase for the column |
e7c9692f GT |
1260 | wxString tStr = colDefs[colNo].ColName; |
1261 | ||
1262 | if (qualTableName.Length() && !tStr.Find(wxT('.'))) | |
4fdae997 | 1263 | { |
243d4b36 | 1264 | pWhereClause += pDb->SQLTableName(qualTableName); |
4fdae997 GT |
1265 | pWhereClause += wxT("."); |
1266 | } | |
e7c9692f GT |
1267 | pWhereClause += pDb->SQLColumnName(colDefs[colNo].ColName); |
1268 | ||
1269 | if (useLikeComparison && (colDefs[colNo].SqlCtype == SQL_C_CHAR)) | |
4fdae997 GT |
1270 | pWhereClause += wxT(" LIKE "); |
1271 | else | |
1272 | pWhereClause += wxT(" = "); | |
e7c9692f GT |
1273 | |
1274 | switch(colDefs[colNo].SqlCtype) | |
4fdae997 GT |
1275 | { |
1276 | case SQL_C_CHAR: | |
e7c9692f | 1277 | colValue.Printf(wxT("'%s'"), (UCHAR FAR *) colDefs[colNo].PtrDataObj); |
4fdae997 GT |
1278 | break; |
1279 | case SQL_C_SSHORT: | |
e7c9692f | 1280 | colValue.Printf(wxT("%hi"), *((SWORD *) colDefs[colNo].PtrDataObj)); |
4fdae997 GT |
1281 | break; |
1282 | case SQL_C_USHORT: | |
e7c9692f | 1283 | colValue.Printf(wxT("%hu"), *((UWORD *) colDefs[colNo].PtrDataObj)); |
4fdae997 GT |
1284 | break; |
1285 | case SQL_C_SLONG: | |
e7c9692f | 1286 | colValue.Printf(wxT("%li"), *((SDWORD *) colDefs[colNo].PtrDataObj)); |
4fdae997 GT |
1287 | break; |
1288 | case SQL_C_ULONG: | |
e7c9692f | 1289 | colValue.Printf(wxT("%lu"), *((UDWORD *) colDefs[colNo].PtrDataObj)); |
4fdae997 GT |
1290 | break; |
1291 | case SQL_C_FLOAT: | |
e7c9692f | 1292 | colValue.Printf(wxT("%.6f"), *((SFLOAT *) colDefs[colNo].PtrDataObj)); |
4fdae997 GT |
1293 | break; |
1294 | case SQL_C_DOUBLE: | |
e7c9692f | 1295 | colValue.Printf(wxT("%.6f"), *((SDOUBLE *) colDefs[colNo].PtrDataObj)); |
4fdae997 GT |
1296 | break; |
1297 | } | |
1298 | pWhereClause += colValue; | |
1299 | } | |
1300 | } | |
1301 | } // wxDbTable::BuildWhereClause() | |
1302 | ||
1303 | ||
1304 | /***** DEPRECATED: use wxDbTable::BuildWhereClause(wxString &....) form *****/ | |
1305 | void wxDbTable::BuildWhereClause(wxChar *pWhereClause, int typeOfWhere, | |
1306 | const wxString &qualTableName, bool useLikeComparison) | |
1307 | { | |
1308 | wxString tempSqlStmt; | |
1309 | BuildWhereClause(tempSqlStmt, typeOfWhere, qualTableName, useLikeComparison); | |
1310 | wxStrcpy(pWhereClause, tempSqlStmt); | |
1311 | } // wxDbTable::BuildWhereClause() | |
1312 | ||
1313 | ||
f6bcfd97 BP |
1314 | /********** wxDbTable::GetRowNum() **********/ |
1315 | UWORD wxDbTable::GetRowNum(void) | |
108106cf | 1316 | { |
89894079 | 1317 | UDWORD rowNum; |
108106cf | 1318 | |
89894079 VZ |
1319 | if (SQLGetStmtOption(hstmt, SQL_ROW_NUMBER, (UCHAR*) &rowNum) != SQL_SUCCESS) |
1320 | { | |
1321 | pDb->DispAllErrors(henv, hdbc, hstmt); | |
1322 | return(0); | |
1323 | } | |
108106cf | 1324 | |
89894079 VZ |
1325 | // Completed successfully |
1326 | return((UWORD) rowNum); | |
108106cf | 1327 | |
f6bcfd97 | 1328 | } // wxDbTable::GetRowNum() |
108106cf | 1329 | |
67e9aaa3 | 1330 | |
f6bcfd97 BP |
1331 | /********** wxDbTable::CloseCursor() **********/ |
1332 | bool wxDbTable::CloseCursor(HSTMT cursor) | |
108106cf | 1333 | { |
89894079 VZ |
1334 | if (SQLFreeStmt(cursor, SQL_CLOSE) != SQL_SUCCESS) |
1335 | return(pDb->DispAllErrors(henv, hdbc, cursor)); | |
108106cf | 1336 | |
89894079 | 1337 | // Completed successfully |
a144affe | 1338 | return(TRUE); |
108106cf | 1339 | |
f6bcfd97 | 1340 | } // wxDbTable::CloseCursor() |
108106cf | 1341 | |
67e9aaa3 | 1342 | |
f6bcfd97 BP |
1343 | /********** wxDbTable::CreateTable() **********/ |
1344 | bool wxDbTable::CreateTable(bool attemptDrop) | |
108106cf | 1345 | { |
89894079 | 1346 | if (!pDb) |
a144affe | 1347 | return FALSE; |
1fc5dd6f | 1348 | |
89894079 | 1349 | int i, j; |
1e92909e | 1350 | wxString sqlStmt; |
108106cf | 1351 | |
a2115c88 | 1352 | #ifdef DBDEBUG_CONSOLE |
4fdae997 | 1353 | cout << wxT("Creating Table ") << tableName << wxT("...") << endl; |
108106cf JS |
1354 | #endif |
1355 | ||
89894079 VZ |
1356 | // Drop table first |
1357 | if (attemptDrop && !DropTable()) | |
a144affe | 1358 | return FALSE; |
108106cf | 1359 | |
89894079 | 1360 | // Create the table |
a2115c88 | 1361 | #ifdef DBDEBUG_CONSOLE |
89894079 VZ |
1362 | for (i = 0; i < noCols; i++) |
1363 | { | |
1364 | // Exclude derived columns since they are NOT part of the base table | |
1365 | if (colDefs[i].DerivedCol) | |
1366 | continue; | |
4fdae997 | 1367 | cout << i + 1 << wxT(": ") << colDefs[i].ColName << wxT("; "); |
89894079 VZ |
1368 | switch(colDefs[i].DbDataType) |
1369 | { | |
1370 | case DB_DATA_TYPE_VARCHAR: | |
882fc8a9 | 1371 | cout << pDb->GetTypeInfVarchar().TypeName << wxT("(") << colDefs[i].SzDataObj << wxT(")"); |
89894079 VZ |
1372 | break; |
1373 | case DB_DATA_TYPE_INTEGER: | |
882fc8a9 | 1374 | cout << pDb->GetTypeInfInteger().TypeName; |
89894079 VZ |
1375 | break; |
1376 | case DB_DATA_TYPE_FLOAT: | |
882fc8a9 | 1377 | cout << pDb->GetTypeInfFloat().TypeName; |
89894079 VZ |
1378 | break; |
1379 | case DB_DATA_TYPE_DATE: | |
882fc8a9 | 1380 | cout << pDb->GetTypeInfDate().TypeName; |
89894079 | 1381 | break; |
bf5423ea | 1382 | case DB_DATA_TYPE_BLOB: |
882fc8a9 | 1383 | cout << pDb->GetTypeInfBlob().TypeName; |
bf5423ea | 1384 | break; |
89894079 VZ |
1385 | } |
1386 | cout << endl; | |
1387 | } | |
108106cf JS |
1388 | #endif |
1389 | ||
89894079 | 1390 | // Build a CREATE TABLE string from the colDefs structure. |
a144affe | 1391 | bool needComma = FALSE; |
243d4b36 | 1392 | |
1d6f2348 VZ |
1393 | sqlStmt.Printf(wxT("CREATE TABLE %s ("), |
1394 | pDb->SQLTableName(tableName.c_str()).c_str()); | |
1e92909e | 1395 | |
89894079 VZ |
1396 | for (i = 0; i < noCols; i++) |
1397 | { | |
1398 | // Exclude derived columns since they are NOT part of the base table | |
1399 | if (colDefs[i].DerivedCol) | |
1400 | continue; | |
1401 | // Comma Delimiter | |
1402 | if (needComma) | |
4fdae997 | 1403 | sqlStmt += wxT(","); |
89894079 | 1404 | // Column Name |
243d4b36 GT |
1405 | sqlStmt += pDb->SQLColumnName(colDefs[i].ColName); |
1406 | // sqlStmt += colDefs[i].ColName; | |
4fdae997 | 1407 | sqlStmt += wxT(" "); |
89894079 VZ |
1408 | // Column Type |
1409 | switch(colDefs[i].DbDataType) | |
1410 | { | |
1411 | case DB_DATA_TYPE_VARCHAR: | |
3ca6a5f0 BP |
1412 | sqlStmt += pDb->GetTypeInfVarchar().TypeName; |
1413 | break; | |
89894079 | 1414 | case DB_DATA_TYPE_INTEGER: |
3ca6a5f0 BP |
1415 | sqlStmt += pDb->GetTypeInfInteger().TypeName; |
1416 | break; | |
89894079 | 1417 | case DB_DATA_TYPE_FLOAT: |
3ca6a5f0 BP |
1418 | sqlStmt += pDb->GetTypeInfFloat().TypeName; |
1419 | break; | |
89894079 | 1420 | case DB_DATA_TYPE_DATE: |
3ca6a5f0 BP |
1421 | sqlStmt += pDb->GetTypeInfDate().TypeName; |
1422 | break; | |
bf5423ea GT |
1423 | case DB_DATA_TYPE_BLOB: |
1424 | sqlStmt += pDb->GetTypeInfBlob().TypeName; | |
1425 | break; | |
89894079 VZ |
1426 | } |
1427 | // For varchars, append the size of the string | |
e25cdb86 GT |
1428 | if (colDefs[i].DbDataType == DB_DATA_TYPE_VARCHAR && |
1429 | (pDb->Dbms() != dbmsMY_SQL || pDb->GetTypeInfVarchar().TypeName != "text"))// || | |
bf5423ea | 1430 | // colDefs[i].DbDataType == DB_DATA_TYPE_BLOB) |
89894079 | 1431 | { |
1e92909e | 1432 | wxString s; |
4fdae997 GT |
1433 | s.Printf(wxT("(%d)"), colDefs[i].SzDataObj); |
1434 | sqlStmt += s; | |
89894079 VZ |
1435 | } |
1436 | ||
e93a3a18 GT |
1437 | if (pDb->Dbms() == dbmsDB2 || |
1438 | pDb->Dbms() == dbmsMY_SQL || | |
1439 | pDb->Dbms() == dbmsSYBASE_ASE || | |
9082f1a9 | 1440 | pDb->Dbms() == dbmsINTERBASE || |
e93a3a18 | 1441 | pDb->Dbms() == dbmsMS_SQL_SERVER) |
89894079 VZ |
1442 | { |
1443 | if (colDefs[i].KeyField) | |
1444 | { | |
4fdae997 | 1445 | sqlStmt += wxT(" NOT NULL"); |
89894079 VZ |
1446 | } |
1447 | } | |
da38429d | 1448 | |
a144affe | 1449 | needComma = TRUE; |
89894079 VZ |
1450 | } |
1451 | // If there is a primary key defined, include it in the create statement | |
1452 | for (i = j = 0; i < noCols; i++) | |
1453 | { | |
1454 | if (colDefs[i].KeyField) | |
1455 | { | |
1456 | j++; | |
1457 | break; | |
1458 | } | |
1459 | } | |
9f4de2dc JS |
1460 | if (j && (pDb->Dbms() != dbmsDBASE) |
1461 | && (pDb->Dbms() != dbmsXBASE_SEQUITER) | |
1462 | ) // Found a keyfield | |
89894079 | 1463 | { |
87cc3456 | 1464 | switch (pDb->Dbms()) |
89894079 | 1465 | { |
1dee6b39 | 1466 | case dbmsACCESS: |
597fadce | 1467 | case dbmsINFORMIX: |
87cc3456 GT |
1468 | case dbmsSYBASE_ASA: |
1469 | case dbmsSYBASE_ASE: | |
1470 | case dbmsMY_SQL: | |
1471 | { | |
2beca662 | 1472 | // MySQL goes out on this one. We also declare the relevant key NON NULL above |
87cc3456 GT |
1473 | sqlStmt += wxT(",PRIMARY KEY ("); |
1474 | break; | |
1475 | } | |
1476 | default: | |
1477 | { | |
1478 | sqlStmt += wxT(",CONSTRAINT "); | |
2beca662 GT |
1479 | // DB2 is limited to 18 characters for index names |
1480 | if (pDb->Dbms() == dbmsDB2) | |
1481 | { | |
1482 | wxASSERT_MSG((tableName && wxStrlen(tableName) <= 13), wxT("DB2 table/index names must be no longer than 13 characters in length.\n\nTruncating table name to 13 characters.")); | |
243d4b36 GT |
1483 | sqlStmt += pDb->SQLTableName(tableName.substr(0, 13).c_str()); |
1484 | // sqlStmt += tableName.substr(0, 13); | |
2beca662 GT |
1485 | } |
1486 | else | |
243d4b36 GT |
1487 | sqlStmt += pDb->SQLTableName(tableName.c_str()); |
1488 | // sqlStmt += tableName; | |
2beca662 | 1489 | |
87cc3456 GT |
1490 | sqlStmt += wxT("_PIDX PRIMARY KEY ("); |
1491 | break; | |
1492 | } | |
89894079 VZ |
1493 | } |
1494 | ||
1495 | // List column name(s) of column(s) comprising the primary key | |
1496 | for (i = j = 0; i < noCols; i++) | |
1497 | { | |
1498 | if (colDefs[i].KeyField) | |
1499 | { | |
1500 | if (j++) // Multi part key, comma separate names | |
4fdae997 | 1501 | sqlStmt += wxT(","); |
243d4b36 | 1502 | sqlStmt += pDb->SQLColumnName(colDefs[i].ColName); |
e25cdb86 GT |
1503 | |
1504 | if (pDb->Dbms() == dbmsMY_SQL && | |
1505 | colDefs[i].DbDataType == DB_DATA_TYPE_VARCHAR) | |
1506 | { | |
1507 | wxString s; | |
1508 | s.Printf(wxT("(%d)"), colDefs[i].SzDataObj); | |
1509 | sqlStmt += s; | |
1510 | } | |
89894079 VZ |
1511 | } |
1512 | } | |
2beca662 GT |
1513 | sqlStmt += wxT(")"); |
1514 | ||
597fadce GT |
1515 | if (pDb->Dbms() == dbmsINFORMIX || |
1516 | pDb->Dbms() == dbmsSYBASE_ASA || | |
2beca662 GT |
1517 | pDb->Dbms() == dbmsSYBASE_ASE) |
1518 | { | |
1519 | sqlStmt += wxT(" CONSTRAINT "); | |
243d4b36 GT |
1520 | sqlStmt += pDb->SQLTableName(tableName); |
1521 | // sqlStmt += tableName; | |
2beca662 GT |
1522 | sqlStmt += wxT("_PIDX"); |
1523 | } | |
89894079 VZ |
1524 | } |
1525 | // Append the closing parentheses for the create table statement | |
4fdae997 | 1526 | sqlStmt += wxT(")"); |
a2115c88 | 1527 | |
4fdae997 | 1528 | pDb->WriteSqlLog(sqlStmt); |
1fc5dd6f | 1529 | |
a2115c88 | 1530 | #ifdef DBDEBUG_CONSOLE |
f6bcfd97 | 1531 | cout << endl << sqlStmt.c_str() << endl; |
108106cf JS |
1532 | #endif |
1533 | ||
89894079 | 1534 | // Execute the CREATE TABLE statement |
f6bcfd97 | 1535 | RETCODE retcode = SQLExecDirect(hstmt, (UCHAR FAR *) sqlStmt.c_str(), SQL_NTS); |
89894079 VZ |
1536 | if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO) |
1537 | { | |
1538 | pDb->DispAllErrors(henv, hdbc, hstmt); | |
1539 | pDb->RollbackTrans(); | |
1540 | CloseCursor(hstmt); | |
a144affe | 1541 | return(FALSE); |
89894079 VZ |
1542 | } |
1543 | ||
1544 | // Commit the transaction and close the cursor | |
3ca6a5f0 | 1545 | if (!pDb->CommitTrans()) |
a144affe | 1546 | return(FALSE); |
3ca6a5f0 | 1547 | if (!CloseCursor(hstmt)) |
a144affe | 1548 | return(FALSE); |
89894079 VZ |
1549 | |
1550 | // Database table created successfully | |
a144affe | 1551 | return(TRUE); |
108106cf | 1552 | |
f6bcfd97 | 1553 | } // wxDbTable::CreateTable() |
108106cf | 1554 | |
67e9aaa3 | 1555 | |
f6bcfd97 BP |
1556 | /********** wxDbTable::DropTable() **********/ |
1557 | bool wxDbTable::DropTable() | |
a2115c88 | 1558 | { |
a144affe | 1559 | // NOTE: This function returns TRUE if the Table does not exist, but |
89894079 | 1560 | // only for identified databases. Code will need to be added |
0b8410f3 | 1561 | // below for any other databases when those databases are defined |
89894079 | 1562 | // to handle this situation consistently |
a2115c88 | 1563 | |
1e92909e | 1564 | wxString sqlStmt; |
a2115c88 | 1565 | |
1d6f2348 VZ |
1566 | sqlStmt.Printf(wxT("DROP TABLE %s"), |
1567 | pDb->SQLTableName(tableName.c_str()).c_str()); | |
a2115c88 | 1568 | |
4fdae997 | 1569 | pDb->WriteSqlLog(sqlStmt); |
a2115c88 GT |
1570 | |
1571 | #ifdef DBDEBUG_CONSOLE | |
f6bcfd97 | 1572 | cout << endl << sqlStmt.c_str() << endl; |
a2115c88 GT |
1573 | #endif |
1574 | ||
5a226de0 | 1575 | RETCODE retcode = SQLExecDirect(hstmt, (UCHAR FAR *) sqlStmt.c_str(), SQL_NTS); |
2beca662 | 1576 | if (retcode != SQL_SUCCESS) |
89894079 VZ |
1577 | { |
1578 | // Check for "Base table not found" error and ignore | |
da38429d | 1579 | pDb->GetNextError(henv, hdbc, hstmt); |
2beca662 | 1580 | if (wxStrcmp(pDb->sqlState, wxT("S0002")) /*&& |
da38429d | 1581 | wxStrcmp(pDb->sqlState, wxT("S1000"))*/) // "Base table not found" |
2beca662 | 1582 | { |
89894079 | 1583 | // Check for product specific error codes |
2beca662 | 1584 | if (!((pDb->Dbms() == dbmsSYBASE_ASA && !wxStrcmp(pDb->sqlState,wxT("42000"))) || // 5.x (and lower?) |
da38429d | 1585 | (pDb->Dbms() == dbmsSYBASE_ASE && !wxStrcmp(pDb->sqlState,wxT("37000"))) || |
2beca662 | 1586 | (pDb->Dbms() == dbmsPERVASIVE_SQL && !wxStrcmp(pDb->sqlState,wxT("S1000"))) || // Returns an S1000 then an S0002 |
da38429d | 1587 | (pDb->Dbms() == dbmsPOSTGRES && !wxStrcmp(pDb->sqlState,wxT("08S01"))))) |
89894079 VZ |
1588 | { |
1589 | pDb->DispNextError(); | |
1590 | pDb->DispAllErrors(henv, hdbc, hstmt); | |
1591 | pDb->RollbackTrans(); | |
5a226de0 | 1592 | // CloseCursor(hstmt); |
a144affe | 1593 | return(FALSE); |
89894079 VZ |
1594 | } |
1595 | } | |
1596 | } | |
1597 | ||
1598 | // Commit the transaction and close the cursor | |
1599 | if (! pDb->CommitTrans()) | |
a144affe | 1600 | return(FALSE); |
89894079 | 1601 | if (! CloseCursor(hstmt)) |
a144affe | 1602 | return(FALSE); |
89894079 | 1603 | |
a144affe | 1604 | return(TRUE); |
f6bcfd97 | 1605 | } // wxDbTable::DropTable() |
a2115c88 | 1606 | |
67e9aaa3 | 1607 | |
f6bcfd97 | 1608 | /********** wxDbTable::CreateIndex() **********/ |
87cc3456 | 1609 | bool wxDbTable::CreateIndex(const wxString &idxName, bool unique, UWORD noIdxCols, |
2beca662 | 1610 | wxDbIdxDef *pIdxDefs, bool attemptDrop) |
108106cf | 1611 | { |
1e92909e | 1612 | wxString sqlStmt; |
89894079 VZ |
1613 | |
1614 | // Drop the index first | |
1615 | if (attemptDrop && !DropIndex(idxName)) | |
a144affe | 1616 | return (FALSE); |
89894079 | 1617 | |
3ca6a5f0 BP |
1618 | // MySQL (and possibly Sybase ASE?? - gt) require that any columns which are used as portions |
1619 | // of an index have the columns defined as "NOT NULL". During initial table creation though, | |
1620 | // it may not be known which columns are necessarily going to be part of an index (e.g. the | |
1621 | // table was created, then months later you determine that an additional index while | |
1622 | // give better performance, so you want to add an index). | |
1623 | // | |
1624 | // The following block of code will modify the column definition to make the column be | |
1625 | // defined with the "NOT NULL" qualifier. | |
1626 | if (pDb->Dbms() == dbmsMY_SQL) | |
1627 | { | |
1628 | wxString sqlStmt; | |
1629 | int i; | |
a144affe | 1630 | bool ok = TRUE; |
3ca6a5f0 BP |
1631 | for (i = 0; i < noIdxCols && ok; i++) |
1632 | { | |
1633 | int j = 0; | |
a144affe | 1634 | bool found = FALSE; |
3ca6a5f0 BP |
1635 | // Find the column definition that has the ColName that matches the |
1636 | // index column name. We need to do this to get the DB_DATA_TYPE of | |
1637 | // the index column, as MySQL's syntax for the ALTER column requires | |
1638 | // this information | |
1639 | while (!found && (j < this->noCols)) | |
1640 | { | |
1641 | if (wxStrcmp(colDefs[j].ColName,pIdxDefs[i].ColName) == 0) | |
a144affe | 1642 | found = TRUE; |
3ca6a5f0 BP |
1643 | if (!found) |
1644 | j++; | |
1645 | } | |
da38429d | 1646 | |
3ca6a5f0 BP |
1647 | if (found) |
1648 | { | |
4fdae997 GT |
1649 | ok = pDb->ModifyColumn(tableName, pIdxDefs[i].ColName, |
1650 | colDefs[j].DbDataType, colDefs[j].SzDataObj, | |
1651 | wxT("NOT NULL")); | |
1652 | ||
3ca6a5f0 BP |
1653 | if (!ok) |
1654 | { | |
1655 | wxODBC_ERRORS retcode; | |
1656 | // Oracle returns a DB_ERR_GENERAL_ERROR if the column is already | |
1657 | // defined to be NOT NULL, but reportedly MySQL doesn't mind. | |
1658 | // This line is just here for debug checking of the value | |
1659 | retcode = (wxODBC_ERRORS)pDb->DB_STATUS; | |
1660 | } | |
1661 | } | |
1662 | else | |
a144affe | 1663 | ok = FALSE; |
3ca6a5f0 BP |
1664 | } |
1665 | if (ok) | |
1666 | pDb->CommitTrans(); | |
1667 | else | |
1668 | { | |
1669 | pDb->RollbackTrans(); | |
a144affe | 1670 | return(FALSE); |
3ca6a5f0 BP |
1671 | } |
1672 | } | |
da38429d | 1673 | |
89894079 | 1674 | // Build a CREATE INDEX statement |
4fdae997 | 1675 | sqlStmt = wxT("CREATE "); |
89894079 | 1676 | if (unique) |
4fdae997 | 1677 | sqlStmt += wxT("UNIQUE "); |
da38429d | 1678 | |
4fdae997 | 1679 | sqlStmt += wxT("INDEX "); |
243d4b36 | 1680 | sqlStmt += pDb->SQLTableName(idxName); |
4fdae997 | 1681 | sqlStmt += wxT(" ON "); |
243d4b36 GT |
1682 | |
1683 | sqlStmt += pDb->SQLTableName(tableName); | |
1684 | // sqlStmt += tableName; | |
4fdae997 | 1685 | sqlStmt += wxT(" ("); |
da38429d | 1686 | |
89894079 VZ |
1687 | // Append list of columns making up index |
1688 | int i; | |
1689 | for (i = 0; i < noIdxCols; i++) | |
1690 | { | |
243d4b36 GT |
1691 | sqlStmt += pDb->SQLColumnName(pIdxDefs[i].ColName); |
1692 | // sqlStmt += pIdxDefs[i].ColName; | |
9082f1a9 | 1693 | |
9c136858 JS |
1694 | // MySQL requires a key length on VARCHAR keys |
1695 | if ( pDb->Dbms() == dbmsMY_SQL ) | |
1696 | { | |
1697 | // Find the details on this column | |
1698 | int j; | |
1699 | for ( j = 0; j < noCols; ++j ) | |
1700 | { | |
1701 | if ( wxStrcmp( pIdxDefs[i].ColName, colDefs[j].ColName ) == 0 ) | |
1702 | { | |
1703 | break; | |
1704 | } | |
1705 | } | |
1706 | if ( colDefs[j].DbDataType == DB_DATA_TYPE_VARCHAR) | |
1707 | { | |
1708 | wxString s; | |
1709 | s.Printf(wxT("(%d)"), colDefs[i].SzDataObj); | |
1710 | sqlStmt += s; | |
1711 | } | |
1712 | } | |
1713 | ||
9082f1a9 GT |
1714 | // Postgres and SQL Server 7 do not support the ASC/DESC keywords for index columns |
1715 | if (!((pDb->Dbms() == dbmsMS_SQL_SERVER) && (strncmp(pDb->dbInf.dbmsVer,"07",2)==0)) && | |
1716 | !(pDb->Dbms() == dbmsPOSTGRES)) | |
89894079 VZ |
1717 | { |
1718 | if (pIdxDefs[i].Ascending) | |
4fdae997 | 1719 | sqlStmt += wxT(" ASC"); |
89894079 | 1720 | else |
4fdae997 | 1721 | sqlStmt += wxT(" DESC"); |
89894079 | 1722 | } |
9082f1a9 | 1723 | else |
882fc8a9 | 1724 | wxASSERT_MSG(pIdxDefs[i].Ascending, "Datasource does not support DESCending index columns"); |
89894079 VZ |
1725 | |
1726 | if ((i + 1) < noIdxCols) | |
4fdae997 | 1727 | sqlStmt += wxT(","); |
89894079 | 1728 | } |
da38429d | 1729 | |
89894079 | 1730 | // Append closing parentheses |
4fdae997 | 1731 | sqlStmt += wxT(")"); |
89894079 | 1732 | |
4fdae997 | 1733 | pDb->WriteSqlLog(sqlStmt); |
1fc5dd6f | 1734 | |
a2115c88 | 1735 | #ifdef DBDEBUG_CONSOLE |
f6bcfd97 | 1736 | cout << endl << sqlStmt.c_str() << endl << endl; |
108106cf JS |
1737 | #endif |
1738 | ||
89894079 | 1739 | // Execute the CREATE INDEX statement |
f6bcfd97 | 1740 | if (SQLExecDirect(hstmt, (UCHAR FAR *) sqlStmt.c_str(), SQL_NTS) != SQL_SUCCESS) |
89894079 VZ |
1741 | { |
1742 | pDb->DispAllErrors(henv, hdbc, hstmt); | |
1743 | pDb->RollbackTrans(); | |
1744 | CloseCursor(hstmt); | |
a144affe | 1745 | return(FALSE); |
89894079 | 1746 | } |
108106cf | 1747 | |
89894079 VZ |
1748 | // Commit the transaction and close the cursor |
1749 | if (! pDb->CommitTrans()) | |
a144affe | 1750 | return(FALSE); |
89894079 | 1751 | if (! CloseCursor(hstmt)) |
a144affe | 1752 | return(FALSE); |
108106cf | 1753 | |
89894079 | 1754 | // Index Created Successfully |
a144affe | 1755 | return(TRUE); |
108106cf | 1756 | |
f6bcfd97 | 1757 | } // wxDbTable::CreateIndex() |
108106cf | 1758 | |
67e9aaa3 | 1759 | |
f6bcfd97 | 1760 | /********** wxDbTable::DropIndex() **********/ |
4fdae997 | 1761 | bool wxDbTable::DropIndex(const wxString &idxName) |
a2115c88 | 1762 | { |
a144affe | 1763 | // NOTE: This function returns TRUE if the Index does not exist, but |
89894079 | 1764 | // only for identified databases. Code will need to be added |
5a226de0 | 1765 | // below for any other databases when those databases are defined |
89894079 | 1766 | // to handle this situation consistently |
a2115c88 | 1767 | |
1e92909e | 1768 | wxString sqlStmt; |
a2115c88 | 1769 | |
5a226de0 GT |
1770 | if (pDb->Dbms() == dbmsACCESS || pDb->Dbms() == dbmsMY_SQL || |
1771 | pDb->Dbms() == dbmsDBASE /*|| Paradox needs this syntax too when we add support*/) | |
1d6f2348 VZ |
1772 | sqlStmt.Printf(wxT("DROP INDEX %s ON %s"), |
1773 | pDb->SQLTableName(idxName.c_str()).c_str(), | |
6bbff0aa | 1774 | pDb->SQLTableName(tableName.c_str()).c_str()); |
e93a3a18 | 1775 | else if ((pDb->Dbms() == dbmsMS_SQL_SERVER) || |
9f4de2dc JS |
1776 | (pDb->Dbms() == dbmsSYBASE_ASE) || |
1777 | (pDb->Dbms() == dbmsXBASE_SEQUITER)) | |
1d6f2348 VZ |
1778 | sqlStmt.Printf(wxT("DROP INDEX %s.%s"), |
1779 | pDb->SQLTableName(tableName.c_str()).c_str(), | |
1780 | pDb->SQLTableName(idxName.c_str()).c_str()); | |
89894079 | 1781 | else |
1d6f2348 VZ |
1782 | sqlStmt.Printf(wxT("DROP INDEX %s"), |
1783 | pDb->SQLTableName(idxName.c_str()).c_str()); | |
a2115c88 | 1784 | |
4fdae997 | 1785 | pDb->WriteSqlLog(sqlStmt); |
a2115c88 GT |
1786 | |
1787 | #ifdef DBDEBUG_CONSOLE | |
f6bcfd97 | 1788 | cout << endl << sqlStmt.c_str() << endl; |
a2115c88 GT |
1789 | #endif |
1790 | ||
f6bcfd97 | 1791 | if (SQLExecDirect(hstmt, (UCHAR FAR *) sqlStmt.c_str(), SQL_NTS) != SQL_SUCCESS) |
89894079 VZ |
1792 | { |
1793 | // Check for "Index not found" error and ignore | |
1794 | pDb->GetNextError(henv, hdbc, hstmt); | |
4fdae997 | 1795 | if (wxStrcmp(pDb->sqlState,wxT("S0012"))) // "Index not found" |
89894079 VZ |
1796 | { |
1797 | // Check for product specific error codes | |
4fdae997 GT |
1798 | if (!((pDb->Dbms() == dbmsSYBASE_ASA && !wxStrcmp(pDb->sqlState,wxT("42000"))) || // v5.x (and lower?) |
1799 | (pDb->Dbms() == dbmsSYBASE_ASE && !wxStrcmp(pDb->sqlState,wxT("37000"))) || | |
1800 | (pDb->Dbms() == dbmsMS_SQL_SERVER && !wxStrcmp(pDb->sqlState,wxT("S1000"))) || | |
9082f1a9 | 1801 | (pDb->Dbms() == dbmsINTERBASE && !wxStrcmp(pDb->sqlState,wxT("S1000"))) || |
4fdae997 GT |
1802 | (pDb->Dbms() == dbmsSYBASE_ASE && !wxStrcmp(pDb->sqlState,wxT("S0002"))) || // Base table not found |
1803 | (pDb->Dbms() == dbmsMY_SQL && !wxStrcmp(pDb->sqlState,wxT("42S12"))) || // tested by Christopher Ludwik Marino-Cebulski using v3.23.21beta | |
1804 | (pDb->Dbms() == dbmsPOSTGRES && !wxStrcmp(pDb->sqlState,wxT("08S01"))) | |
3ca6a5f0 | 1805 | )) |
89894079 VZ |
1806 | { |
1807 | pDb->DispNextError(); | |
1808 | pDb->DispAllErrors(henv, hdbc, hstmt); | |
1809 | pDb->RollbackTrans(); | |
1810 | CloseCursor(hstmt); | |
a144affe | 1811 | return(FALSE); |
89894079 VZ |
1812 | } |
1813 | } | |
1814 | } | |
1815 | ||
1816 | // Commit the transaction and close the cursor | |
1817 | if (! pDb->CommitTrans()) | |
a144affe | 1818 | return(FALSE); |
89894079 | 1819 | if (! CloseCursor(hstmt)) |
a144affe | 1820 | return(FALSE); |
89894079 | 1821 | |
a144affe | 1822 | return(TRUE); |
f6bcfd97 | 1823 | } // wxDbTable::DropIndex() |
a2115c88 | 1824 | |
67e9aaa3 | 1825 | |
38cfbffa | 1826 | /********** wxDbTable::SetOrderByColNums() **********/ |
e938ff5e | 1827 | bool wxDbTable::SetOrderByColNums(UWORD first, ... ) |
38cfbffa | 1828 | { |
2beca662 | 1829 | int colNo = first; // using 'int' to be able to look for wxDB_NO_MORE_COLUN_NUMBERS |
38cfbffa GT |
1830 | va_list argptr; |
1831 | ||
a144affe | 1832 | bool abort = FALSE; |
38cfbffa GT |
1833 | wxString tempStr; |
1834 | ||
1835 | va_start(argptr, first); /* Initialize variable arguments. */ | |
1836 | while (!abort && (colNo != wxDB_NO_MORE_COLUMN_NUMBERS)) | |
1837 | { | |
1838 | // Make sure the passed in column number | |
1839 | // is within the valid range of columns | |
1840 | // | |
1841 | // Valid columns are 0 thru noCols-1 | |
1842 | if (colNo >= noCols || colNo < 0) | |
1843 | { | |
a144affe | 1844 | abort = TRUE; |
38cfbffa GT |
1845 | continue; |
1846 | } | |
1847 | ||
1848 | if (colNo != first) | |
4fdae997 | 1849 | tempStr += wxT(","); |
38cfbffa GT |
1850 | |
1851 | tempStr += colDefs[colNo].ColName; | |
1852 | colNo = va_arg (argptr, int); | |
1853 | } | |
1854 | va_end (argptr); /* Reset variable arguments. */ | |
1855 | ||
4fdae997 | 1856 | SetOrderByClause(tempStr); |
38cfbffa GT |
1857 | |
1858 | return (!abort); | |
1859 | } // wxDbTable::SetOrderByColNums() | |
1860 | ||
1861 | ||
f6bcfd97 BP |
1862 | /********** wxDbTable::Insert() **********/ |
1863 | int wxDbTable::Insert(void) | |
108106cf | 1864 | { |
4fdae997 | 1865 | wxASSERT(!queryOnly); |
f6bcfd97 | 1866 | if (queryOnly || !insertable) |
89894079 VZ |
1867 | return(DB_FAILURE); |
1868 | ||
1869 | bindInsertParams(); | |
1870 | ||
1871 | // Insert the record by executing the already prepared insert statement | |
1872 | RETCODE retcode; | |
1873 | retcode=SQLExecute(hstmtInsert); | |
5962bdb8 JS |
1874 | if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO && |
1875 | retcode != SQL_NEED_DATA) | |
89894079 VZ |
1876 | { |
1877 | // Check to see if integrity constraint was violated | |
1878 | pDb->GetNextError(henv, hdbc, hstmtInsert); | |
4fdae997 | 1879 | if (! wxStrcmp(pDb->sqlState, wxT("23000"))) // Integrity constraint violated |
89894079 VZ |
1880 | return(DB_ERR_INTEGRITY_CONSTRAINT_VIOL); |
1881 | else | |
1882 | { | |
1883 | pDb->DispNextError(); | |
1884 | pDb->DispAllErrors(henv, hdbc, hstmtInsert); | |
1885 | return(DB_FAILURE); | |
1886 | } | |
1887 | } | |
5962bdb8 JS |
1888 | if (retcode == SQL_NEED_DATA) |
1889 | { | |
1890 | PTR pParmID; | |
1891 | while ((retcode = SQLParamData(hstmtInsert, &pParmID) == SQL_NEED_DATA)) | |
1892 | { | |
1893 | // Find the parameter | |
1894 | int i; | |
1895 | for (i=0; i < noCols; i++) | |
1896 | { | |
1897 | if (colDefs[i].PtrDataObj == pParmID) | |
1898 | { | |
1899 | // We found it. Store the parameter. | |
1900 | retcode = SQLPutData(hstmtInsert, pParmID, colDefs[i].SzDataObj); | |
1901 | if (retcode != SQL_SUCCESS) | |
1902 | { | |
1903 | pDb->DispNextError(); | |
1904 | pDb->DispAllErrors(henv, hdbc, hstmtInsert); | |
1905 | return(DB_FAILURE); | |
1906 | } | |
1907 | break; | |
1908 | } | |
1909 | } | |
1910 | } | |
1911 | } | |
89894079 VZ |
1912 | |
1913 | // Record inserted into the datasource successfully | |
1914 | return(DB_SUCCESS); | |
108106cf | 1915 | |
f6bcfd97 | 1916 | } // wxDbTable::Insert() |
108106cf | 1917 | |
67e9aaa3 | 1918 | |
f6bcfd97 BP |
1919 | /********** wxDbTable::Update() **********/ |
1920 | bool wxDbTable::Update(void) | |
108106cf | 1921 | { |
4fdae997 | 1922 | wxASSERT(!queryOnly); |
89894079 | 1923 | if (queryOnly) |
a144affe | 1924 | return(FALSE); |
a2115c88 | 1925 | |
4fdae997 | 1926 | wxString sqlStmt; |
108106cf | 1927 | |
89894079 | 1928 | // Build the SQL UPDATE statement |
f6bcfd97 | 1929 | BuildUpdateStmt(sqlStmt, DB_UPD_KEYFIELDS); |
108106cf | 1930 | |
89894079 | 1931 | pDb->WriteSqlLog(sqlStmt); |
1fc5dd6f | 1932 | |
a2115c88 | 1933 | #ifdef DBDEBUG_CONSOLE |
4fdae997 | 1934 | cout << endl << sqlStmt.c_str() << endl << endl; |
108106cf JS |
1935 | #endif |
1936 | ||
89894079 VZ |
1937 | // Execute the SQL UPDATE statement |
1938 | return(execUpdate(sqlStmt)); | |
108106cf | 1939 | |
f6bcfd97 | 1940 | } // wxDbTable::Update() |
108106cf | 1941 | |
67e9aaa3 | 1942 | |
f6bcfd97 | 1943 | /********** wxDbTable::Update(pSqlStmt) **********/ |
4fdae997 | 1944 | bool wxDbTable::Update(const wxString &pSqlStmt) |
6919c53f | 1945 | { |
4fdae997 | 1946 | wxASSERT(!queryOnly); |
89894079 | 1947 | if (queryOnly) |
a144affe | 1948 | return(FALSE); |
6919c53f | 1949 | |
89894079 | 1950 | pDb->WriteSqlLog(pSqlStmt); |
6919c53f | 1951 | |
89894079 | 1952 | return(execUpdate(pSqlStmt)); |
6919c53f | 1953 | |
f6bcfd97 | 1954 | } // wxDbTable::Update(pSqlStmt) |
6919c53f | 1955 | |
67e9aaa3 | 1956 | |
f6bcfd97 | 1957 | /********** wxDbTable::UpdateWhere() **********/ |
4fdae997 | 1958 | bool wxDbTable::UpdateWhere(const wxString &pWhereClause) |
108106cf | 1959 | { |
4fdae997 | 1960 | wxASSERT(!queryOnly); |
89894079 | 1961 | if (queryOnly) |
a144affe | 1962 | return(FALSE); |
a2115c88 | 1963 | |
4fdae997 | 1964 | wxString sqlStmt; |
108106cf | 1965 | |
89894079 | 1966 | // Build the SQL UPDATE statement |
f6bcfd97 | 1967 | BuildUpdateStmt(sqlStmt, DB_UPD_WHERE, pWhereClause); |
108106cf | 1968 | |
89894079 | 1969 | pDb->WriteSqlLog(sqlStmt); |
1fc5dd6f | 1970 | |
a2115c88 | 1971 | #ifdef DBDEBUG_CONSOLE |
4fdae997 | 1972 | cout << endl << sqlStmt.c_str() << endl << endl; |
108106cf JS |
1973 | #endif |
1974 | ||
89894079 VZ |
1975 | // Execute the SQL UPDATE statement |
1976 | return(execUpdate(sqlStmt)); | |
108106cf | 1977 | |
f6bcfd97 | 1978 | } // wxDbTable::UpdateWhere() |
108106cf | 1979 | |
67e9aaa3 | 1980 | |
f6bcfd97 BP |
1981 | /********** wxDbTable::Delete() **********/ |
1982 | bool wxDbTable::Delete(void) | |
108106cf | 1983 | { |
4fdae997 | 1984 | wxASSERT(!queryOnly); |
89894079 | 1985 | if (queryOnly) |
a144affe | 1986 | return(FALSE); |
a2115c88 | 1987 | |
4fdae997 GT |
1988 | wxString sqlStmt; |
1989 | sqlStmt.Empty(); | |
108106cf | 1990 | |
89894079 | 1991 | // Build the SQL DELETE statement |
f6bcfd97 | 1992 | BuildDeleteStmt(sqlStmt, DB_DEL_KEYFIELDS); |
108106cf | 1993 | |
89894079 | 1994 | pDb->WriteSqlLog(sqlStmt); |
1fc5dd6f | 1995 | |
89894079 VZ |
1996 | // Execute the SQL DELETE statement |
1997 | return(execDelete(sqlStmt)); | |
108106cf | 1998 | |
f6bcfd97 | 1999 | } // wxDbTable::Delete() |
108106cf | 2000 | |
67e9aaa3 | 2001 | |
f6bcfd97 | 2002 | /********** wxDbTable::DeleteWhere() **********/ |
4fdae997 | 2003 | bool wxDbTable::DeleteWhere(const wxString &pWhereClause) |
108106cf | 2004 | { |
4fdae997 | 2005 | wxASSERT(!queryOnly); |
89894079 | 2006 | if (queryOnly) |
a144affe | 2007 | return(FALSE); |
a2115c88 | 2008 | |
4fdae997 GT |
2009 | wxString sqlStmt; |
2010 | sqlStmt.Empty(); | |
108106cf | 2011 | |
89894079 | 2012 | // Build the SQL DELETE statement |
f6bcfd97 | 2013 | BuildDeleteStmt(sqlStmt, DB_DEL_WHERE, pWhereClause); |
108106cf | 2014 | |
89894079 | 2015 | pDb->WriteSqlLog(sqlStmt); |
1fc5dd6f | 2016 | |
89894079 VZ |
2017 | // Execute the SQL DELETE statement |
2018 | return(execDelete(sqlStmt)); | |
108106cf | 2019 | |
f6bcfd97 | 2020 | } // wxDbTable::DeleteWhere() |
108106cf | 2021 | |
67e9aaa3 | 2022 | |
f6bcfd97 BP |
2023 | /********** wxDbTable::DeleteMatching() **********/ |
2024 | bool wxDbTable::DeleteMatching(void) | |
108106cf | 2025 | { |
4fdae997 | 2026 | wxASSERT(!queryOnly); |
89894079 | 2027 | if (queryOnly) |
a144affe | 2028 | return(FALSE); |
a2115c88 | 2029 | |
4fdae997 GT |
2030 | wxString sqlStmt; |
2031 | sqlStmt.Empty(); | |
108106cf | 2032 | |
89894079 | 2033 | // Build the SQL DELETE statement |
f6bcfd97 | 2034 | BuildDeleteStmt(sqlStmt, DB_DEL_MATCHING); |
108106cf | 2035 | |
89894079 | 2036 | pDb->WriteSqlLog(sqlStmt); |
1fc5dd6f | 2037 | |
89894079 VZ |
2038 | // Execute the SQL DELETE statement |
2039 | return(execDelete(sqlStmt)); | |
108106cf | 2040 | |
f6bcfd97 | 2041 | } // wxDbTable::DeleteMatching() |
108106cf | 2042 | |
67e9aaa3 | 2043 | |
f6bcfd97 | 2044 | /********** wxDbTable::IsColNull() **********/ |
882fc8a9 | 2045 | bool wxDbTable::IsColNull(UWORD colNo) const |
108106cf | 2046 | { |
f02d4a64 | 2047 | /* |
a144affe | 2048 | This logic is just not right. It would indicate TRUE |
f02d4a64 GT |
2049 | if a numeric field were set to a value of 0. |
2050 | ||
89894079 VZ |
2051 | switch(colDefs[colNo].SqlCtype) |
2052 | { | |
3ca6a5f0 BP |
2053 | case SQL_C_CHAR: |
2054 | return(((UCHAR FAR *) colDefs[colNo].PtrDataObj)[0] == 0); | |
2055 | case SQL_C_SSHORT: | |
2056 | return(( *((SWORD *) colDefs[colNo].PtrDataObj)) == 0); | |
2057 | case SQL_C_USHORT: | |
2058 | return(( *((UWORD*) colDefs[colNo].PtrDataObj)) == 0); | |
2059 | case SQL_C_SLONG: | |
2060 | return(( *((SDWORD *) colDefs[colNo].PtrDataObj)) == 0); | |
2061 | case SQL_C_ULONG: | |
2062 | return(( *((UDWORD *) colDefs[colNo].PtrDataObj)) == 0); | |
2063 | case SQL_C_FLOAT: | |
2064 | return(( *((SFLOAT *) colDefs[colNo].PtrDataObj)) == 0); | |
2065 | case SQL_C_DOUBLE: | |
2066 | return((*((SDOUBLE *) colDefs[colNo].PtrDataObj)) == 0); | |
2067 | case SQL_C_TIMESTAMP: | |
2068 | TIMESTAMP_STRUCT *pDt; | |
2069 | pDt = (TIMESTAMP_STRUCT *) colDefs[colNo].PtrDataObj; | |
2070 | if (pDt->year == 0 && pDt->month == 0 && pDt->day == 0) | |
a144affe | 2071 | return(TRUE); |
3ca6a5f0 | 2072 | else |
a144affe | 2073 | return(FALSE); |
3ca6a5f0 | 2074 | default: |
a144affe | 2075 | return(TRUE); |
89894079 | 2076 | } |
f02d4a64 GT |
2077 | */ |
2078 | return (colDefs[colNo].Null); | |
f6bcfd97 | 2079 | } // wxDbTable::IsColNull() |
108106cf | 2080 | |
67e9aaa3 | 2081 | |
f6bcfd97 BP |
2082 | /********** wxDbTable::CanSelectForUpdate() **********/ |
2083 | bool wxDbTable::CanSelectForUpdate(void) | |
108106cf | 2084 | { |
38cfbffa | 2085 | if (queryOnly) |
a144affe | 2086 | return FALSE; |
38cfbffa | 2087 | |
89894079 | 2088 | if (pDb->Dbms() == dbmsMY_SQL) |
a144affe | 2089 | return FALSE; |
a2115c88 | 2090 | |
e93a3a18 GT |
2091 | if ((pDb->Dbms() == dbmsORACLE) || |
2092 | (pDb->dbInf.posStmts & SQL_PS_SELECT_FOR_UPDATE)) | |
a144affe | 2093 | return(TRUE); |
89894079 | 2094 | else |
a144affe | 2095 | return(FALSE); |
108106cf | 2096 | |
f6bcfd97 | 2097 | } // wxDbTable::CanSelectForUpdate() |
108106cf | 2098 | |
67e9aaa3 | 2099 | |
f6bcfd97 BP |
2100 | /********** wxDbTable::CanUpdByROWID() **********/ |
2101 | bool wxDbTable::CanUpdByROWID(void) | |
108106cf | 2102 | { |
67e9aaa3 | 2103 | /* |
a144affe | 2104 | * NOTE: Returning FALSE for now until this can be debugged, |
89894079 | 2105 | * as the ROWID is not getting updated correctly |
67e9aaa3 | 2106 | */ |
a144affe | 2107 | return FALSE; |
6b3f4fb8 | 2108 | /* |
89894079 | 2109 | if (pDb->Dbms() == dbmsORACLE) |
a144affe | 2110 | return(TRUE); |
89894079 | 2111 | else |
a144affe | 2112 | return(FALSE); |
6b3f4fb8 | 2113 | */ |
f6bcfd97 | 2114 | } // wxDbTable::CanUpdByROWID() |
108106cf | 2115 | |
67e9aaa3 | 2116 | |
f6bcfd97 BP |
2117 | /********** wxDbTable::IsCursorClosedOnCommit() **********/ |
2118 | bool wxDbTable::IsCursorClosedOnCommit(void) | |
108106cf | 2119 | { |
89894079 | 2120 | if (pDb->dbInf.cursorCommitBehavior == SQL_CB_PRESERVE) |
a144affe | 2121 | return(FALSE); |
89894079 | 2122 | else |
a144affe | 2123 | return(TRUE); |
108106cf | 2124 | |
f6bcfd97 | 2125 | } // wxDbTable::IsCursorClosedOnCommit() |
108106cf | 2126 | |
67e9aaa3 | 2127 | |
f02d4a64 GT |
2128 | |
2129 | /********** wxDbTable::ClearMemberVar() **********/ | |
e938ff5e | 2130 | void wxDbTable::ClearMemberVar(UWORD colNo, bool setToNull) |
108106cf | 2131 | { |
4fdae997 | 2132 | wxASSERT(colNo < noCols); |
f02d4a64 GT |
2133 | |
2134 | switch(colDefs[colNo].SqlCtype) | |
89894079 | 2135 | { |
f02d4a64 GT |
2136 | case SQL_C_CHAR: |
2137 | ((UCHAR FAR *) colDefs[colNo].PtrDataObj)[0] = 0; | |
2138 | break; | |
2139 | case SQL_C_SSHORT: | |
2140 | *((SWORD *) colDefs[colNo].PtrDataObj) = 0; | |
2141 | break; | |
2142 | case SQL_C_USHORT: | |
2143 | *((UWORD*) colDefs[colNo].PtrDataObj) = 0; | |
2144 | break; | |
2145 | case SQL_C_SLONG: | |
2146 | *((SDWORD *) colDefs[colNo].PtrDataObj) = 0; | |
2147 | break; | |
2148 | case SQL_C_ULONG: | |
2149 | *((UDWORD *) colDefs[colNo].PtrDataObj) = 0; | |
2150 | break; | |
2151 | case SQL_C_FLOAT: | |
2152 | *((SFLOAT *) colDefs[colNo].PtrDataObj) = 0.0f; | |
2153 | break; | |
2154 | case SQL_C_DOUBLE: | |
2155 | *((SDOUBLE *) colDefs[colNo].PtrDataObj) = 0.0f; | |
2156 | break; | |
2157 | case SQL_C_TIMESTAMP: | |
2158 | TIMESTAMP_STRUCT *pDt; | |
2159 | pDt = (TIMESTAMP_STRUCT *) colDefs[colNo].PtrDataObj; | |
2160 | pDt->year = 0; | |
2161 | pDt->month = 0; | |
2162 | pDt->day = 0; | |
2163 | pDt->hour = 0; | |
2164 | pDt->minute = 0; | |
2165 | pDt->second = 0; | |
2166 | pDt->fraction = 0; | |
2167 | break; | |
89894079 | 2168 | } |
108106cf | 2169 | |
f02d4a64 GT |
2170 | if (setToNull) |
2171 | SetColNull(colNo); | |
2172 | } // wxDbTable::ClearMemberVar() | |
2173 | ||
2174 | ||
2175 | /********** wxDbTable::ClearMemberVars() **********/ | |
2176 | void wxDbTable::ClearMemberVars(bool setToNull) | |
2177 | { | |
2178 | int i; | |
2179 | ||
2180 | // Loop through the columns setting each member variable to zero | |
2181 | for (i=0; i < noCols; i++) | |
2182 | ClearMemberVar(i,setToNull); | |
2183 | ||
f6bcfd97 | 2184 | } // wxDbTable::ClearMemberVars() |
108106cf | 2185 | |
67e9aaa3 | 2186 | |
f6bcfd97 BP |
2187 | /********** wxDbTable::SetQueryTimeout() **********/ |
2188 | bool wxDbTable::SetQueryTimeout(UDWORD nSeconds) | |
108106cf | 2189 | { |
89894079 VZ |
2190 | if (SQLSetStmtOption(hstmtInsert, SQL_QUERY_TIMEOUT, nSeconds) != SQL_SUCCESS) |
2191 | return(pDb->DispAllErrors(henv, hdbc, hstmtInsert)); | |
2192 | if (SQLSetStmtOption(hstmtUpdate, SQL_QUERY_TIMEOUT, nSeconds) != SQL_SUCCESS) | |
2193 | return(pDb->DispAllErrors(henv, hdbc, hstmtUpdate)); | |
2194 | if (SQLSetStmtOption(hstmtDelete, SQL_QUERY_TIMEOUT, nSeconds) != SQL_SUCCESS) | |
2195 | return(pDb->DispAllErrors(henv, hdbc, hstmtDelete)); | |
2196 | if (SQLSetStmtOption(hstmtInternal, SQL_QUERY_TIMEOUT, nSeconds) != SQL_SUCCESS) | |
2197 | return(pDb->DispAllErrors(henv, hdbc, hstmtInternal)); | |
2198 | ||
2199 | // Completed Successfully | |
a144affe | 2200 | return(TRUE); |
108106cf | 2201 | |
f6bcfd97 | 2202 | } // wxDbTable::SetQueryTimeout() |
108106cf | 2203 | |
67e9aaa3 | 2204 | |
f6bcfd97 | 2205 | /********** wxDbTable::SetColDefs() **********/ |
87cc3456 | 2206 | void wxDbTable::SetColDefs(UWORD index, const wxString &fieldName, int dataType, void *pData, |
6b3f4fb8 | 2207 | SWORD cType, int size, bool keyField, bool upd, |
e93a3a18 | 2208 | bool insAllow, bool derivedCol) |
108106cf | 2209 | { |
ff294e0e GT |
2210 | wxASSERT_MSG( index < noCols, |
2211 | _T("Specified column index exceeds the maximum number of columns for this table.") ); | |
2212 | ||
89894079 VZ |
2213 | if (!colDefs) // May happen if the database connection fails |
2214 | return; | |
2215 | ||
4fdae997 | 2216 | if (fieldName.Length() > (unsigned int) DB_MAX_COLUMN_NAME_LEN) |
89894079 | 2217 | { |
9082f1a9 | 2218 | wxStrncpy(colDefs[index].ColName, fieldName, DB_MAX_COLUMN_NAME_LEN); |
89894079 | 2219 | colDefs[index].ColName[DB_MAX_COLUMN_NAME_LEN] = 0; |
da38429d VZ |
2220 | |
2221 | #ifdef __WXDEBUG__ | |
9082f1a9 | 2222 | wxString tmpMsg; |
da38429d VZ |
2223 | tmpMsg.Printf(_T("Column name '%s' is too long. Truncated to '%s'."), |
2224 | fieldName.c_str(),colDefs[index].ColName); | |
2225 | wxFAIL_MSG(tmpMsg); | |
2226 | #endif // __WXDEBUG__ | |
89894079 VZ |
2227 | } |
2228 | else | |
2229 | wxStrcpy(colDefs[index].ColName, fieldName); | |
2230 | ||
2231 | colDefs[index].DbDataType = dataType; | |
2232 | colDefs[index].PtrDataObj = pData; | |
2233 | colDefs[index].SqlCtype = cType; | |
2234 | colDefs[index].SzDataObj = size; | |
2235 | colDefs[index].KeyField = keyField; | |
2236 | colDefs[index].DerivedCol = derivedCol; | |
2237 | // Derived columns by definition would NOT be "Insertable" or "Updateable" | |
2238 | if (derivedCol) | |
2239 | { | |
a144affe GT |
2240 | colDefs[index].Updateable = FALSE; |
2241 | colDefs[index].InsertAllowed = FALSE; | |
89894079 VZ |
2242 | } |
2243 | else | |
2244 | { | |
2245 | colDefs[index].Updateable = upd; | |
2246 | colDefs[index].InsertAllowed = insAllow; | |
2247 | } | |
2248 | ||
a144affe | 2249 | colDefs[index].Null = FALSE; |
da38429d | 2250 | |
f6bcfd97 | 2251 | } // wxDbTable::SetColDefs() |
108106cf | 2252 | |
67e9aaa3 | 2253 | |
e93a3a18 | 2254 | /********** wxDbTable::SetColDefs() **********/ |
87cc3456 | 2255 | wxDbColDataPtr* wxDbTable::SetColDefs(wxDbColInf *pColInfs, UWORD numCols) |
67e9aaa3 | 2256 | { |
4fdae997 | 2257 | wxASSERT(pColInfs); |
f6bcfd97 | 2258 | wxDbColDataPtr *pColDataPtrs = NULL; |
67e9aaa3 | 2259 | |
89894079 VZ |
2260 | if (pColInfs) |
2261 | { | |
87cc3456 | 2262 | UWORD index; |
da38429d | 2263 | |
f6bcfd97 | 2264 | pColDataPtrs = new wxDbColDataPtr[numCols+1]; |
67e9aaa3 GT |
2265 | |
2266 | for (index = 0; index < numCols; index++) | |
89894079 | 2267 | { |
89894079 VZ |
2268 | // Process the fields |
2269 | switch (pColInfs[index].dbDataType) | |
2270 | { | |
2271 | case DB_DATA_TYPE_VARCHAR: | |
4fdae997 | 2272 | pColDataPtrs[index].PtrDataObj = new wxChar[pColInfs[index].bufferLength+1]; |
0b8410f3 GT |
2273 | pColDataPtrs[index].SzDataObj = pColInfs[index].columnSize; |
2274 | pColDataPtrs[index].SqlCtype = SQL_C_CHAR; | |
2275 | break; | |
89894079 | 2276 | case DB_DATA_TYPE_INTEGER: |
67e9aaa3 | 2277 | // Can be long or short |
89894079 VZ |
2278 | if (pColInfs[index].bufferLength == sizeof(long)) |
2279 | { | |
2280 | pColDataPtrs[index].PtrDataObj = new long; | |
2281 | pColDataPtrs[index].SzDataObj = sizeof(long); | |
2282 | pColDataPtrs[index].SqlCtype = SQL_C_SLONG; | |
2283 | } | |
2284 | else | |
2285 | { | |
2286 | pColDataPtrs[index].PtrDataObj = new short; | |
2287 | pColDataPtrs[index].SzDataObj = sizeof(short); | |
2288 | pColDataPtrs[index].SqlCtype = SQL_C_SSHORT; | |
2289 | } | |
2290 | break; | |
89894079 | 2291 | case DB_DATA_TYPE_FLOAT: |
89894079 VZ |
2292 | // Can be float or double |
2293 | if (pColInfs[index].bufferLength == sizeof(float)) | |
2294 | { | |
2295 | pColDataPtrs[index].PtrDataObj = new float; | |
2296 | pColDataPtrs[index].SzDataObj = sizeof(float); | |
2297 | pColDataPtrs[index].SqlCtype = SQL_C_FLOAT; | |
2298 | } | |
2299 | else | |
2300 | { | |
2301 | pColDataPtrs[index].PtrDataObj = new double; | |
2302 | pColDataPtrs[index].SzDataObj = sizeof(double); | |
2303 | pColDataPtrs[index].SqlCtype = SQL_C_DOUBLE; | |
da38429d | 2304 | } |
89894079 | 2305 | break; |
89894079 | 2306 | case DB_DATA_TYPE_DATE: |
89894079 VZ |
2307 | pColDataPtrs[index].PtrDataObj = new TIMESTAMP_STRUCT; |
2308 | pColDataPtrs[index].SzDataObj = sizeof(TIMESTAMP_STRUCT); | |
2309 | pColDataPtrs[index].SqlCtype = SQL_C_TIMESTAMP; | |
2310 | break; | |
bf5423ea | 2311 | case DB_DATA_TYPE_BLOB: |
da38429d | 2312 | wxFAIL_MSG(wxT("This form of ::SetColDefs() cannot be used with BLOB columns")); |
bf5423ea GT |
2313 | pColDataPtrs[index].PtrDataObj = /*BLOB ADDITION NEEDED*/NULL; |
2314 | pColDataPtrs[index].SzDataObj = /*BLOB ADDITION NEEDED*/sizeof(void *); | |
2315 | pColDataPtrs[index].SqlCtype = SQL_VARBINARY; | |
2316 | break; | |
2317 | } | |
2318 | if (pColDataPtrs[index].PtrDataObj != NULL) | |
2319 | SetColDefs (index,pColInfs[index].colName,pColInfs[index].dbDataType, pColDataPtrs[index].PtrDataObj, pColDataPtrs[index].SqlCtype, pColDataPtrs[index].SzDataObj); | |
2320 | else | |
2321 | { | |
da38429d | 2322 | // Unable to build all the column definitions, as either one of |
bf5423ea GT |
2323 | // the calls to "new" failed above, or there was a BLOB field |
2324 | // to have a column definition for. If BLOBs are to be used, | |
2325 | // the other form of ::SetColDefs() must be used, as it is impossible | |
2326 | // to know the maximum size to create the PtrDataObj to be. | |
2327 | delete [] pColDataPtrs; | |
2328 | return NULL; | |
89894079 | 2329 | } |
89894079 VZ |
2330 | } |
2331 | } | |
3ca6a5f0 | 2332 | |
89894079 | 2333 | return (pColDataPtrs); |
3ca6a5f0 | 2334 | |
e93a3a18 | 2335 | } // wxDbTable::SetColDefs() |
67e9aaa3 GT |
2336 | |
2337 | ||
f6bcfd97 BP |
2338 | /********** wxDbTable::SetCursor() **********/ |
2339 | void wxDbTable::SetCursor(HSTMT *hstmtActivate) | |
108106cf | 2340 | { |
f6bcfd97 | 2341 | if (hstmtActivate == wxDB_DEFAULT_CURSOR) |
89894079 VZ |
2342 | hstmt = *hstmtDefault; |
2343 | else | |
2344 | hstmt = *hstmtActivate; | |
108106cf | 2345 | |
f6bcfd97 | 2346 | } // wxDbTable::SetCursor() |
108106cf | 2347 | |
67e9aaa3 | 2348 | |
4fdae997 GT |
2349 | /********** wxDbTable::Count(const wxString &) **********/ |
2350 | ULONG wxDbTable::Count(const wxString &args) | |
108106cf | 2351 | { |
3ca6a5f0 | 2352 | ULONG count; |
1e92909e | 2353 | wxString sqlStmt; |
89894079 VZ |
2354 | SDWORD cb; |
2355 | ||
2356 | // Build a "SELECT COUNT(*) FROM queryTableName [WHERE whereClause]" SQL Statement | |
4fdae997 | 2357 | sqlStmt = wxT("SELECT COUNT("); |
1e92909e | 2358 | sqlStmt += args; |
4fdae997 | 2359 | sqlStmt += wxT(") FROM "); |
243d4b36 GT |
2360 | sqlStmt += pDb->SQLTableName(queryTableName); |
2361 | // sqlStmt += queryTableName; | |
f6bcfd97 | 2362 | #if wxODBC_BACKWARD_COMPATABILITY |
89894079 | 2363 | if (from && wxStrlen(from)) |
f6bcfd97 BP |
2364 | #else |
2365 | if (from.Length()) | |
2366 | #endif | |
1e92909e | 2367 | sqlStmt += from; |
89894079 VZ |
2368 | |
2369 | // Add the where clause if one is provided | |
f6bcfd97 | 2370 | #if wxODBC_BACKWARD_COMPATABILITY |
89894079 | 2371 | if (where && wxStrlen(where)) |
f6bcfd97 BP |
2372 | #else |
2373 | if (where.Length()) | |
2374 | #endif | |
89894079 | 2375 | { |
4fdae997 | 2376 | sqlStmt += wxT(" WHERE "); |
1e92909e | 2377 | sqlStmt += where; |
89894079 VZ |
2378 | } |
2379 | ||
4fdae997 | 2380 | pDb->WriteSqlLog(sqlStmt); |
89894079 VZ |
2381 | |
2382 | // Initialize the Count cursor if it's not already initialized | |
2383 | if (!hstmtCount) | |
2384 | { | |
a144affe | 2385 | hstmtCount = GetNewCursor(FALSE,FALSE); |
4fdae997 | 2386 | wxASSERT(hstmtCount); |
89894079 VZ |
2387 | if (!hstmtCount) |
2388 | return(0); | |
2389 | } | |
2390 | ||
2391 | // Execute the SQL statement | |
f6bcfd97 | 2392 | if (SQLExecDirect(*hstmtCount, (UCHAR FAR *) sqlStmt.c_str(), SQL_NTS) != SQL_SUCCESS) |
89894079 VZ |
2393 | { |
2394 | pDb->DispAllErrors(henv, hdbc, *hstmtCount); | |
2395 | return(0); | |
2396 | } | |
2397 | ||
2398 | // Fetch the record | |
2399 | if (SQLFetch(*hstmtCount) != SQL_SUCCESS) | |
2400 | { | |
2401 | pDb->DispAllErrors(henv, hdbc, *hstmtCount); | |
2402 | return(0); | |
2403 | } | |
2404 | ||
2405 | // Obtain the result | |
6b3f4fb8 | 2406 | if (SQLGetData(*hstmtCount, (UWORD)1, SQL_C_ULONG, &count, sizeof(count), &cb) != SQL_SUCCESS) |
89894079 VZ |
2407 | { |
2408 | pDb->DispAllErrors(henv, hdbc, *hstmtCount); | |
2409 | return(0); | |
2410 | } | |
2411 | ||
2412 | // Free the cursor | |
2413 | if (SQLFreeStmt(*hstmtCount, SQL_CLOSE) != SQL_SUCCESS) | |
2414 | pDb->DispAllErrors(henv, hdbc, *hstmtCount); | |
2415 | ||
2416 | // Return the record count | |
3ca6a5f0 | 2417 | return(count); |
108106cf | 2418 | |
f6bcfd97 | 2419 | } // wxDbTable::Count() |
108106cf | 2420 | |
67e9aaa3 | 2421 | |
f6bcfd97 BP |
2422 | /********** wxDbTable::Refresh() **********/ |
2423 | bool wxDbTable::Refresh(void) | |
108106cf | 2424 | { |
a144affe | 2425 | bool result = TRUE; |
89894079 VZ |
2426 | |
2427 | // Switch to the internal cursor so any active cursors are not corrupted | |
2428 | HSTMT currCursor = GetCursor(); | |
2429 | hstmt = hstmtInternal; | |
f6bcfd97 | 2430 | #if wxODBC_BACKWARD_COMPATABILITY |
89894079 VZ |
2431 | // Save the where and order by clauses |
2432 | char *saveWhere = where; | |
2433 | char *saveOrderBy = orderBy; | |
f6bcfd97 BP |
2434 | #else |
2435 | wxString saveWhere = where; | |
2436 | wxString saveOrderBy = orderBy; | |
2437 | #endif | |
89894079 VZ |
2438 | // Build a where clause to refetch the record with. Try and use the |
2439 | // ROWID if it's available, ow use the key fields. | |
4fdae997 GT |
2440 | wxString whereClause; |
2441 | whereClause.Empty(); | |
2442 | ||
89894079 VZ |
2443 | if (CanUpdByROWID()) |
2444 | { | |
2445 | SDWORD cb; | |
4fdae997 | 2446 | wxChar rowid[wxDB_ROWID_LEN+1]; |
89894079 VZ |
2447 | |
2448 | // Get the ROWID value. If not successful retreiving the ROWID, | |
2449 | // simply fall down through the code and build the WHERE clause | |
2450 | // based on the key fields. | |
6b3f4fb8 | 2451 | if (SQLGetData(hstmt, (UWORD)(noCols+1), SQL_C_CHAR, (UCHAR*) rowid, wxDB_ROWID_LEN, &cb) == SQL_SUCCESS) |
89894079 | 2452 | { |
243d4b36 GT |
2453 | whereClause += pDb->SQLTableName(queryTableName); |
2454 | // whereClause += queryTableName; | |
4fdae997 GT |
2455 | whereClause += wxT(".ROWID = '"); |
2456 | whereClause += rowid; | |
2457 | whereClause += wxT("'"); | |
89894079 VZ |
2458 | } |
2459 | } | |
2460 | ||
2461 | // If unable to use the ROWID, build a where clause from the keyfields | |
2462 | if (wxStrlen(whereClause) == 0) | |
f6bcfd97 | 2463 | BuildWhereClause(whereClause, DB_WHERE_KEYFIELDS, queryTableName); |
89894079 VZ |
2464 | |
2465 | // Requery the record | |
2466 | where = whereClause; | |
4fdae997 | 2467 | orderBy.Empty(); |
89894079 | 2468 | if (!Query()) |
a144affe | 2469 | result = FALSE; |
89894079 VZ |
2470 | |
2471 | if (result && !GetNext()) | |
a144affe | 2472 | result = FALSE; |
89894079 VZ |
2473 | |
2474 | // Switch back to original cursor | |
2475 | SetCursor(&currCursor); | |
2476 | ||
2477 | // Free the internal cursor | |
2478 | if (SQLFreeStmt(hstmtInternal, SQL_CLOSE) != SQL_SUCCESS) | |
2479 | pDb->DispAllErrors(henv, hdbc, hstmtInternal); | |
2480 | ||
2481 | // Restore the original where and order by clauses | |
1e92909e | 2482 | where = saveWhere; |
89894079 VZ |
2483 | orderBy = saveOrderBy; |
2484 | ||
2485 | return(result); | |
108106cf | 2486 | |
f6bcfd97 | 2487 | } // wxDbTable::Refresh() |
108106cf | 2488 | |
67e9aaa3 | 2489 | |
e938ff5e GT |
2490 | /********** wxDbTable::SetColNull() **********/ |
2491 | bool wxDbTable::SetColNull(UWORD colNo, bool set) | |
a2115c88 | 2492 | { |
89894079 | 2493 | if (colNo < noCols) |
f02d4a64 GT |
2494 | { |
2495 | colDefs[colNo].Null = set; | |
2496 | if (set) // Blank out the values in the member variable | |
e7c9692f GT |
2497 | { |
2498 | colDefs[colNo].CbValue = SQL_NULL_DATA; // SF PATCH#766404 | |
2499 | ClearMemberVar(colNo,FALSE); // Must call with FALSE, or infinite recursion will happen | |
2500 | } | |
a144affe | 2501 | return(TRUE); |
f02d4a64 | 2502 | } |
89894079 | 2503 | else |
a144affe | 2504 | return(FALSE); |
a2115c88 | 2505 | |
4fdae997 | 2506 | } // wxDbTable::SetColNull() |
67e9aaa3 | 2507 | |
a2115c88 | 2508 | |
e938ff5e | 2509 | /********** wxDbTable::SetColNull() **********/ |
4fdae997 | 2510 | bool wxDbTable::SetColNull(const wxString &colName, bool set) |
a2115c88 | 2511 | { |
e7c9692f GT |
2512 | int colNo; |
2513 | for (colNo = 0; colNo < noCols; colNo++) | |
89894079 | 2514 | { |
e7c9692f | 2515 | if (!wxStricmp(colName, colDefs[colNo].ColName)) |
89894079 VZ |
2516 | break; |
2517 | } | |
2518 | ||
e7c9692f | 2519 | if (colNo < noCols) |
f02d4a64 | 2520 | { |
e7c9692f | 2521 | colDefs[colNo].Null = set; |
f02d4a64 | 2522 | if (set) // Blank out the values in the member variable |
e7c9692f GT |
2523 | { |
2524 | colDefs[colNo].CbValue = SQL_NULL_DATA; // SF PATCH#766404 | |
2525 | ClearMemberVar(colNo,FALSE); // Must call with FALSE, or infinite recursion will happen | |
2526 | } | |
a144affe | 2527 | return(TRUE); |
f02d4a64 | 2528 | } |
89894079 | 2529 | else |
a144affe | 2530 | return(FALSE); |
a2115c88 | 2531 | |
4fdae997 | 2532 | } // wxDbTable::SetColNull() |
a2115c88 | 2533 | |
67e9aaa3 | 2534 | |
f6bcfd97 BP |
2535 | /********** wxDbTable::GetNewCursor() **********/ |
2536 | HSTMT *wxDbTable::GetNewCursor(bool setCursor, bool bindColumns) | |
a2115c88 | 2537 | { |
89894079 | 2538 | HSTMT *newHSTMT = new HSTMT; |
4fdae997 | 2539 | wxASSERT(newHSTMT); |
89894079 VZ |
2540 | if (!newHSTMT) |
2541 | return(0); | |
2542 | ||
2543 | if (SQLAllocStmt(hdbc, newHSTMT) != SQL_SUCCESS) | |
2544 | { | |
2545 | pDb->DispAllErrors(henv, hdbc); | |
2546 | delete newHSTMT; | |
2547 | return(0); | |
2548 | } | |
2549 | ||
2550 | if (SQLSetStmtOption(*newHSTMT, SQL_CURSOR_TYPE, cursorType) != SQL_SUCCESS) | |
2551 | { | |
2552 | pDb->DispAllErrors(henv, hdbc, *newHSTMT); | |
2553 | delete newHSTMT; | |
2554 | return(0); | |
2555 | } | |
2556 | ||
2557 | if (bindColumns) | |
2558 | { | |
882fc8a9 | 2559 | if (!bindCols(*newHSTMT)) |
89894079 VZ |
2560 | { |
2561 | delete newHSTMT; | |
2562 | return(0); | |
2563 | } | |
2564 | } | |
2565 | ||
2566 | if (setCursor) | |
2567 | SetCursor(newHSTMT); | |
2568 | ||
2569 | return(newHSTMT); | |
2570 | ||
f6bcfd97 | 2571 | } // wxDbTable::GetNewCursor() |
67e9aaa3 | 2572 | |
a2115c88 | 2573 | |
f6bcfd97 BP |
2574 | /********** wxDbTable::DeleteCursor() **********/ |
2575 | bool wxDbTable::DeleteCursor(HSTMT *hstmtDel) | |
a2115c88 | 2576 | { |
a144affe | 2577 | bool result = TRUE; |
a2115c88 | 2578 | |
89894079 VZ |
2579 | if (!hstmtDel) // Cursor already deleted |
2580 | return(result); | |
a2115c88 | 2581 | |
7d8c3dba GT |
2582 | /* |
2583 | ODBC 3.0 says to use this form | |
2584 | if (SQLFreeHandle(*hstmtDel, SQL_DROP) != SQL_SUCCESS) | |
da38429d | 2585 | |
7d8c3dba | 2586 | */ |
89894079 VZ |
2587 | if (SQLFreeStmt(*hstmtDel, SQL_DROP) != SQL_SUCCESS) |
2588 | { | |
2589 | pDb->DispAllErrors(henv, hdbc); | |
a144affe | 2590 | result = FALSE; |
89894079 | 2591 | } |
a2115c88 | 2592 | |
89894079 | 2593 | delete hstmtDel; |
a2115c88 | 2594 | |
89894079 | 2595 | return(result); |
a2115c88 | 2596 | |
f6bcfd97 | 2597 | } // wxDbTable::DeleteCursor() |
a2115c88 | 2598 | |
882fc8a9 GT |
2599 | ////////////////////////////////////////////////////////////// |
2600 | // wxDbGrid support functions | |
2601 | ////////////////////////////////////////////////////////////// | |
2602 | ||
2603 | void wxDbTable::SetRowMode(const rowmode_t rowmode) | |
2604 | { | |
2605 | if (!m_hstmtGridQuery) | |
2606 | { | |
a144affe | 2607 | m_hstmtGridQuery = GetNewCursor(FALSE,FALSE); |
882fc8a9 GT |
2608 | if (!bindCols(*m_hstmtGridQuery)) |
2609 | return; | |
2610 | } | |
2611 | ||
2612 | m_rowmode = rowmode; | |
2613 | switch (m_rowmode) | |
2614 | { | |
2615 | case WX_ROW_MODE_QUERY: | |
2616 | SetCursor(m_hstmtGridQuery); | |
2617 | break; | |
2618 | case WX_ROW_MODE_INDIVIDUAL: | |
2619 | SetCursor(hstmtDefault); | |
2620 | break; | |
2621 | default: | |
e7c9692f | 2622 | wxASSERT(0); |
882fc8a9 GT |
2623 | } |
2624 | } // wxDbTable::SetRowMode() | |
2625 | ||
2626 | ||
1dee6b39 | 2627 | wxVariant wxDbTable::GetCol(const int colNo) const |
882fc8a9 GT |
2628 | { |
2629 | wxVariant val; | |
1dee6b39 | 2630 | if ((colNo < noCols) && (!IsColNull(colNo))) |
882fc8a9 | 2631 | { |
1dee6b39 | 2632 | switch (colDefs[colNo].SqlCtype) |
882fc8a9 GT |
2633 | { |
2634 | case SQL_CHAR: | |
2635 | case SQL_VARCHAR: | |
1dee6b39 | 2636 | val = (wxChar *)(colDefs[colNo].PtrDataObj); |
882fc8a9 GT |
2637 | break; |
2638 | case SQL_C_LONG: | |
2639 | case SQL_C_SLONG: | |
1dee6b39 | 2640 | val = *(long *)(colDefs[colNo].PtrDataObj); |
882fc8a9 GT |
2641 | break; |
2642 | case SQL_C_SHORT: | |
2643 | case SQL_C_SSHORT: | |
1dee6b39 | 2644 | val = (long int )(*(short *)(colDefs[colNo].PtrDataObj)); |
882fc8a9 GT |
2645 | break; |
2646 | case SQL_C_ULONG: | |
1dee6b39 | 2647 | val = (long)(*(unsigned long *)(colDefs[colNo].PtrDataObj)); |
882fc8a9 GT |
2648 | break; |
2649 | case SQL_C_TINYINT: | |
1dee6b39 | 2650 | val = (long)(*(char *)(colDefs[colNo].PtrDataObj)); |
882fc8a9 GT |
2651 | break; |
2652 | case SQL_C_UTINYINT: | |
1dee6b39 | 2653 | val = (long)(*(unsigned char *)(colDefs[colNo].PtrDataObj)); |
882fc8a9 GT |
2654 | break; |
2655 | case SQL_C_USHORT: | |
1dee6b39 | 2656 | val = (long)(*(UWORD *)(colDefs[colNo].PtrDataObj)); |
882fc8a9 GT |
2657 | break; |
2658 | case SQL_C_DATE: | |
1dee6b39 | 2659 | val = (DATE_STRUCT *)(colDefs[colNo].PtrDataObj); |
882fc8a9 GT |
2660 | break; |
2661 | case SQL_C_TIME: | |
1dee6b39 | 2662 | val = (TIME_STRUCT *)(colDefs[colNo].PtrDataObj); |
882fc8a9 GT |
2663 | break; |
2664 | case SQL_C_TIMESTAMP: | |
1dee6b39 | 2665 | val = (TIMESTAMP_STRUCT *)(colDefs[colNo].PtrDataObj); |
882fc8a9 GT |
2666 | break; |
2667 | case SQL_C_DOUBLE: | |
1dee6b39 | 2668 | val = *(double *)(colDefs[colNo].PtrDataObj); |
882fc8a9 GT |
2669 | break; |
2670 | default: | |
2671 | assert(0); | |
2672 | } | |
2673 | } | |
2674 | return val; | |
2675 | } // wxDbTable::GetCol() | |
2676 | ||
2677 | ||
1dee6b39 | 2678 | void wxDbTable::SetCol(const int colNo, const wxVariant val) |
882fc8a9 GT |
2679 | { |
2680 | //FIXME: Add proper wxDateTime support to wxVariant.. | |
2681 | wxDateTime dateval; | |
2682 | ||
1dee6b39 | 2683 | SetColNull(colNo, val.IsNull()); |
882fc8a9 GT |
2684 | |
2685 | if (!val.IsNull()) | |
2686 | { | |
1dee6b39 GT |
2687 | if ((colDefs[colNo].SqlCtype == SQL_C_DATE) |
2688 | || (colDefs[colNo].SqlCtype == SQL_C_TIME) | |
2689 | || (colDefs[colNo].SqlCtype == SQL_C_TIMESTAMP)) | |
882fc8a9 GT |
2690 | { |
2691 | //Returns null if invalid! | |
2692 | if (!dateval.ParseDate(val.GetString())) | |
1dee6b39 | 2693 | SetColNull(colNo, TRUE); |
da38429d | 2694 | } |
882fc8a9 | 2695 | |
1dee6b39 | 2696 | switch (colDefs[colNo].SqlCtype) |
882fc8a9 GT |
2697 | { |
2698 | case SQL_CHAR: | |
2699 | case SQL_VARCHAR: | |
1dee6b39 | 2700 | csstrncpyt((char *)(colDefs[colNo].PtrDataObj), |
da38429d | 2701 | val.GetString().c_str(), |
1dee6b39 | 2702 | colDefs[colNo].SzDataObj-1); |
882fc8a9 GT |
2703 | break; |
2704 | case SQL_C_LONG: | |
2705 | case SQL_C_SLONG: | |
1dee6b39 | 2706 | *(long *)(colDefs[colNo].PtrDataObj) = val; |
882fc8a9 GT |
2707 | break; |
2708 | case SQL_C_SHORT: | |
2709 | case SQL_C_SSHORT: | |
1dee6b39 | 2710 | *(short *)(colDefs[colNo].PtrDataObj) = val.GetLong(); |
882fc8a9 GT |
2711 | break; |
2712 | case SQL_C_ULONG: | |
1dee6b39 | 2713 | *(unsigned long *)(colDefs[colNo].PtrDataObj) = val.GetLong(); |
882fc8a9 GT |
2714 | break; |
2715 | case SQL_C_TINYINT: | |
1dee6b39 | 2716 | *(char *)(colDefs[colNo].PtrDataObj) = val.GetChar(); |
882fc8a9 GT |
2717 | break; |
2718 | case SQL_C_UTINYINT: | |
1dee6b39 | 2719 | *(unsigned char *)(colDefs[colNo].PtrDataObj) = val.GetChar(); |
882fc8a9 GT |
2720 | break; |
2721 | case SQL_C_USHORT: | |
1dee6b39 | 2722 | *(unsigned short *)(colDefs[colNo].PtrDataObj) = val.GetLong(); |
882fc8a9 GT |
2723 | break; |
2724 | //FIXME: Add proper wxDateTime support to wxVariant.. | |
2725 | case SQL_C_DATE: | |
2726 | { | |
2727 | DATE_STRUCT *dataptr = | |
1dee6b39 | 2728 | (DATE_STRUCT *)colDefs[colNo].PtrDataObj; |
da38429d | 2729 | |
882fc8a9 GT |
2730 | dataptr->year = dateval.GetYear(); |
2731 | dataptr->month = dateval.GetMonth()+1; | |
2732 | dataptr->day = dateval.GetDay(); | |
2733 | } | |
2734 | break; | |
2735 | case SQL_C_TIME: | |
2736 | { | |
2737 | TIME_STRUCT *dataptr = | |
1dee6b39 | 2738 | (TIME_STRUCT *)colDefs[colNo].PtrDataObj; |
da38429d | 2739 | |
882fc8a9 GT |
2740 | dataptr->hour = dateval.GetHour(); |
2741 | dataptr->minute = dateval.GetMinute(); | |
2742 | dataptr->second = dateval.GetSecond(); | |
2743 | } | |
2744 | break; | |
2745 | case SQL_C_TIMESTAMP: | |
2746 | { | |
2747 | TIMESTAMP_STRUCT *dataptr = | |
1dee6b39 | 2748 | (TIMESTAMP_STRUCT *)colDefs[colNo].PtrDataObj; |
882fc8a9 GT |
2749 | dataptr->year = dateval.GetYear(); |
2750 | dataptr->month = dateval.GetMonth()+1; | |
2751 | dataptr->day = dateval.GetDay(); | |
da38429d | 2752 | |
882fc8a9 GT |
2753 | dataptr->hour = dateval.GetHour(); |
2754 | dataptr->minute = dateval.GetMinute(); | |
2755 | dataptr->second = dateval.GetSecond(); | |
2756 | } | |
2757 | break; | |
2758 | case SQL_C_DOUBLE: | |
1dee6b39 | 2759 | *(double *)(colDefs[colNo].PtrDataObj) = val; |
882fc8a9 GT |
2760 | break; |
2761 | default: | |
2762 | assert(0); | |
2763 | } // switch | |
2764 | } // if (!val.IsNull()) | |
2765 | } // wxDbTable::SetCol() | |
2766 | ||
2767 | ||
2768 | GenericKey wxDbTable::GetKey() | |
2769 | { | |
2770 | void *blk; | |
1dee6b39 | 2771 | wxChar *blkptr; |
da38429d | 2772 | |
882fc8a9 | 2773 | blk = malloc(m_keysize); |
1dee6b39 | 2774 | blkptr = (wxChar *) blk; |
da38429d | 2775 | |
882fc8a9 GT |
2776 | int i; |
2777 | for (i=0; i < noCols; i++) | |
2778 | { | |
2779 | if (colDefs[i].KeyField) | |
2780 | { | |
2781 | memcpy(blkptr,colDefs[i].PtrDataObj, colDefs[i].SzDataObj); | |
2782 | blkptr += colDefs[i].SzDataObj; | |
2783 | } | |
2784 | } | |
2785 | ||
2786 | GenericKey k = GenericKey(blk, m_keysize); | |
2787 | free(blk); | |
2788 | ||
2789 | return k; | |
2790 | } // wxDbTable::GetKey() | |
2791 | ||
2792 | ||
2793 | void wxDbTable::SetKey(const GenericKey& k) | |
2794 | { | |
1dee6b39 GT |
2795 | void *blk; |
2796 | wxChar *blkptr; | |
da38429d | 2797 | |
882fc8a9 | 2798 | blk = k.GetBlk(); |
1dee6b39 | 2799 | blkptr = (wxChar *)blk; |
882fc8a9 GT |
2800 | |
2801 | int i; | |
2802 | for (i=0; i < noCols; i++) | |
2803 | { | |
2804 | if (colDefs[i].KeyField) | |
2805 | { | |
a144affe | 2806 | SetColNull(i, FALSE); |
882fc8a9 GT |
2807 | memcpy(colDefs[i].PtrDataObj, blkptr, colDefs[i].SzDataObj); |
2808 | blkptr += colDefs[i].SzDataObj; | |
2809 | } | |
2810 | } | |
2811 | } // wxDbTable::SetKey() | |
2812 | ||
2813 | ||
a2115c88 | 2814 | #endif // wxUSE_ODBC |
1fc5dd6f | 2815 |