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