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