]> git.saurik.com Git - wxWidgets.git/blame - src/common/dbtable.cpp
GCC of PalmOS fix.
[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
e4e45573 437 if (colDefs[columnIndex].SqlCtype == SQL_C_WXCHAR)
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))
e4e45573 782 s = wxT("Connecting 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.
e4e45573 1001 if (SQLGetData(hstmt, (UWORD)(noCols+1), SQL_C_WXCHAR, (UCHAR*) rowid, sizeof(rowid), &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.
e4e45573 1219 if (SQLGetData(hstmt, (UWORD)(noCols+1), SQL_C_WXCHAR, (UCHAR*) rowid, sizeof(rowid), &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
e4e45573 1286 if (useLikeComparison && (colDefs[colNo].SqlCtype == SQL_C_WXCHAR))
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:
5c2cd0f6 1294#ifndef __UNIX__
e4e45573 1295 case SQL_C_WCHAR:
5c2cd0f6 1296#endif
e4e45573 1297 //case SQL_C_WXCHAR: SQL_C_WXCHAR is covered by either SQL_C_CHAR or SQL_C_WCHAR
e7c9692f 1298 colValue.Printf(wxT("'%s'"), (UCHAR FAR *) colDefs[colNo].PtrDataObj);
4fdae997 1299 break;
e9ed92a2 1300 case SQL_C_SHORT:
4fdae997 1301 case SQL_C_SSHORT:
e7c9692f 1302 colValue.Printf(wxT("%hi"), *((SWORD *) colDefs[colNo].PtrDataObj));
4fdae997
GT
1303 break;
1304 case SQL_C_USHORT:
e7c9692f 1305 colValue.Printf(wxT("%hu"), *((UWORD *) colDefs[colNo].PtrDataObj));
4fdae997 1306 break;
e9ed92a2 1307 case SQL_C_LONG:
4fdae997 1308 case SQL_C_SLONG:
e7c9692f 1309 colValue.Printf(wxT("%li"), *((SDWORD *) colDefs[colNo].PtrDataObj));
4fdae997
GT
1310 break;
1311 case SQL_C_ULONG:
e7c9692f 1312 colValue.Printf(wxT("%lu"), *((UDWORD *) colDefs[colNo].PtrDataObj));
4fdae997
GT
1313 break;
1314 case SQL_C_FLOAT:
e7c9692f 1315 colValue.Printf(wxT("%.6f"), *((SFLOAT *) colDefs[colNo].PtrDataObj));
4fdae997
GT
1316 break;
1317 case SQL_C_DOUBLE:
e7c9692f 1318 colValue.Printf(wxT("%.6f"), *((SDOUBLE *) colDefs[colNo].PtrDataObj));
4fdae997 1319 break;
e9ed92a2
GT
1320 default:
1321 {
1322 wxString strMsg;
1323 strMsg.Printf(wxT("wxDbTable::bindParams(): Unknown column type for colDefs %d colName %s"),
1324 colNo,colDefs[colNo].ColName);
2cb43514 1325 wxFAIL_MSG(strMsg.c_str());
e9ed92a2
GT
1326 }
1327 break;
4fdae997
GT
1328 }
1329 pWhereClause += colValue;
1330 }
1331 }
1332} // wxDbTable::BuildWhereClause()
1333
1334
1335/***** DEPRECATED: use wxDbTable::BuildWhereClause(wxString &....) form *****/
1336void wxDbTable::BuildWhereClause(wxChar *pWhereClause, int typeOfWhere,
1337 const wxString &qualTableName, bool useLikeComparison)
1338{
1339 wxString tempSqlStmt;
1340 BuildWhereClause(tempSqlStmt, typeOfWhere, qualTableName, useLikeComparison);
1341 wxStrcpy(pWhereClause, tempSqlStmt);
1342} // wxDbTable::BuildWhereClause()
1343
1344
f6bcfd97
BP
1345/********** wxDbTable::GetRowNum() **********/
1346UWORD wxDbTable::GetRowNum(void)
108106cf 1347{
89894079 1348 UDWORD rowNum;
108106cf 1349
89894079
VZ
1350 if (SQLGetStmtOption(hstmt, SQL_ROW_NUMBER, (UCHAR*) &rowNum) != SQL_SUCCESS)
1351 {
1352 pDb->DispAllErrors(henv, hdbc, hstmt);
1353 return(0);
1354 }
108106cf 1355
89894079
VZ
1356 // Completed successfully
1357 return((UWORD) rowNum);
108106cf 1358
f6bcfd97 1359} // wxDbTable::GetRowNum()
108106cf 1360
67e9aaa3 1361
f6bcfd97
BP
1362/********** wxDbTable::CloseCursor() **********/
1363bool wxDbTable::CloseCursor(HSTMT cursor)
108106cf 1364{
89894079
VZ
1365 if (SQLFreeStmt(cursor, SQL_CLOSE) != SQL_SUCCESS)
1366 return(pDb->DispAllErrors(henv, hdbc, cursor));
108106cf 1367
89894079 1368 // Completed successfully
68379eaf 1369 return true;
108106cf 1370
f6bcfd97 1371} // wxDbTable::CloseCursor()
108106cf 1372
67e9aaa3 1373
f6bcfd97
BP
1374/********** wxDbTable::CreateTable() **********/
1375bool wxDbTable::CreateTable(bool attemptDrop)
108106cf 1376{
89894079 1377 if (!pDb)
68379eaf 1378 return false;
1fc5dd6f 1379
89894079 1380 int i, j;
1e92909e 1381 wxString sqlStmt;
108106cf 1382
a2115c88 1383#ifdef DBDEBUG_CONSOLE
4fdae997 1384 cout << wxT("Creating Table ") << tableName << wxT("...") << endl;
108106cf
JS
1385#endif
1386
89894079
VZ
1387 // Drop table first
1388 if (attemptDrop && !DropTable())
68379eaf 1389 return false;
108106cf 1390
89894079 1391 // Create the table
a2115c88 1392#ifdef DBDEBUG_CONSOLE
89894079
VZ
1393 for (i = 0; i < noCols; i++)
1394 {
1395 // Exclude derived columns since they are NOT part of the base table
1396 if (colDefs[i].DerivedCol)
1397 continue;
4fdae997 1398 cout << i + 1 << wxT(": ") << colDefs[i].ColName << wxT("; ");
89894079
VZ
1399 switch(colDefs[i].DbDataType)
1400 {
1401 case DB_DATA_TYPE_VARCHAR:
e4e45573 1402 cout << pDb->GetTypeInfVarchar().TypeName << wxT("(") << (int)(colDefs[i].SzDataObj / sizeof(wxChar)) << wxT(")");
89894079
VZ
1403 break;
1404 case DB_DATA_TYPE_INTEGER:
882fc8a9 1405 cout << pDb->GetTypeInfInteger().TypeName;
89894079
VZ
1406 break;
1407 case DB_DATA_TYPE_FLOAT:
882fc8a9 1408 cout << pDb->GetTypeInfFloat().TypeName;
89894079
VZ
1409 break;
1410 case DB_DATA_TYPE_DATE:
882fc8a9 1411 cout << pDb->GetTypeInfDate().TypeName;
89894079 1412 break;
bf5423ea 1413 case DB_DATA_TYPE_BLOB:
882fc8a9 1414 cout << pDb->GetTypeInfBlob().TypeName;
bf5423ea 1415 break;
89894079
VZ
1416 }
1417 cout << endl;
1418 }
108106cf
JS
1419#endif
1420
89894079 1421 // Build a CREATE TABLE string from the colDefs structure.
68379eaf 1422 bool needComma = false;
243d4b36 1423
1d6f2348
VZ
1424 sqlStmt.Printf(wxT("CREATE TABLE %s ("),
1425 pDb->SQLTableName(tableName.c_str()).c_str());
1e92909e 1426
89894079
VZ
1427 for (i = 0; i < noCols; i++)
1428 {
1429 // Exclude derived columns since they are NOT part of the base table
1430 if (colDefs[i].DerivedCol)
1431 continue;
1432 // Comma Delimiter
1433 if (needComma)
4fdae997 1434 sqlStmt += wxT(",");
89894079 1435 // Column Name
243d4b36
GT
1436 sqlStmt += pDb->SQLColumnName(colDefs[i].ColName);
1437// sqlStmt += colDefs[i].ColName;
4fdae997 1438 sqlStmt += wxT(" ");
89894079
VZ
1439 // Column Type
1440 switch(colDefs[i].DbDataType)
1441 {
1442 case DB_DATA_TYPE_VARCHAR:
3ca6a5f0
BP
1443 sqlStmt += pDb->GetTypeInfVarchar().TypeName;
1444 break;
89894079 1445 case DB_DATA_TYPE_INTEGER:
3ca6a5f0
BP
1446 sqlStmt += pDb->GetTypeInfInteger().TypeName;
1447 break;
89894079 1448 case DB_DATA_TYPE_FLOAT:
3ca6a5f0
BP
1449 sqlStmt += pDb->GetTypeInfFloat().TypeName;
1450 break;
89894079 1451 case DB_DATA_TYPE_DATE:
3ca6a5f0
BP
1452 sqlStmt += pDb->GetTypeInfDate().TypeName;
1453 break;
bf5423ea
GT
1454 case DB_DATA_TYPE_BLOB:
1455 sqlStmt += pDb->GetTypeInfBlob().TypeName;
1456 break;
89894079
VZ
1457 }
1458 // For varchars, append the size of the string
e25cdb86 1459 if (colDefs[i].DbDataType == DB_DATA_TYPE_VARCHAR &&
8a39593e 1460 (pDb->Dbms() != dbmsMY_SQL || pDb->GetTypeInfVarchar().TypeName != _T("text")))// ||
bf5423ea 1461// colDefs[i].DbDataType == DB_DATA_TYPE_BLOB)
89894079 1462 {
1e92909e 1463 wxString s;
e4e45573 1464 s.Printf(wxT("(%d)"), (int)(colDefs[i].SzDataObj / sizeof(wxChar)));
4fdae997 1465 sqlStmt += s;
89894079
VZ
1466 }
1467
e93a3a18
GT
1468 if (pDb->Dbms() == dbmsDB2 ||
1469 pDb->Dbms() == dbmsMY_SQL ||
1470 pDb->Dbms() == dbmsSYBASE_ASE ||
9082f1a9 1471 pDb->Dbms() == dbmsINTERBASE ||
e93a3a18 1472 pDb->Dbms() == dbmsMS_SQL_SERVER)
89894079
VZ
1473 {
1474 if (colDefs[i].KeyField)
1475 {
4fdae997 1476 sqlStmt += wxT(" NOT NULL");
89894079
VZ
1477 }
1478 }
da38429d 1479
68379eaf 1480 needComma = true;
89894079
VZ
1481 }
1482 // If there is a primary key defined, include it in the create statement
1483 for (i = j = 0; i < noCols; i++)
1484 {
1485 if (colDefs[i].KeyField)
1486 {
1487 j++;
1488 break;
1489 }
1490 }
52410d54
DS
1491 if ( j && (pDb->Dbms() != dbmsDBASE)
1492 && (pDb->Dbms() != dbmsXBASE_SEQUITER) ) // Found a keyfield
89894079 1493 {
87cc3456 1494 switch (pDb->Dbms())
89894079 1495 {
1dee6b39 1496 case dbmsACCESS:
597fadce 1497 case dbmsINFORMIX:
87cc3456
GT
1498 case dbmsSYBASE_ASA:
1499 case dbmsSYBASE_ASE:
1500 case dbmsMY_SQL:
1501 {
2beca662 1502 // MySQL goes out on this one. We also declare the relevant key NON NULL above
87cc3456
GT
1503 sqlStmt += wxT(",PRIMARY KEY (");
1504 break;
1505 }
1506 default:
1507 {
1508 sqlStmt += wxT(",CONSTRAINT ");
2beca662
GT
1509 // DB2 is limited to 18 characters for index names
1510 if (pDb->Dbms() == dbmsDB2)
1511 {
1512 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
1513 sqlStmt += pDb->SQLTableName(tableName.substr(0, 13).c_str());
1514// sqlStmt += tableName.substr(0, 13);
2beca662
GT
1515 }
1516 else
243d4b36
GT
1517 sqlStmt += pDb->SQLTableName(tableName.c_str());
1518// sqlStmt += tableName;
2beca662 1519
87cc3456
GT
1520 sqlStmt += wxT("_PIDX PRIMARY KEY (");
1521 break;
1522 }
89894079
VZ
1523 }
1524
1525 // List column name(s) of column(s) comprising the primary key
1526 for (i = j = 0; i < noCols; i++)
1527 {
1528 if (colDefs[i].KeyField)
1529 {
1530 if (j++) // Multi part key, comma separate names
4fdae997 1531 sqlStmt += wxT(",");
243d4b36 1532 sqlStmt += pDb->SQLColumnName(colDefs[i].ColName);
e25cdb86
GT
1533
1534 if (pDb->Dbms() == dbmsMY_SQL &&
1535 colDefs[i].DbDataType == DB_DATA_TYPE_VARCHAR)
1536 {
1537 wxString s;
e4e45573 1538 s.Printf(wxT("(%d)"), (int)(colDefs[i].SzDataObj / sizeof(wxChar)));
e25cdb86
GT
1539 sqlStmt += s;
1540 }
89894079
VZ
1541 }
1542 }
2beca662
GT
1543 sqlStmt += wxT(")");
1544
597fadce
GT
1545 if (pDb->Dbms() == dbmsINFORMIX ||
1546 pDb->Dbms() == dbmsSYBASE_ASA ||
2beca662
GT
1547 pDb->Dbms() == dbmsSYBASE_ASE)
1548 {
1549 sqlStmt += wxT(" CONSTRAINT ");
243d4b36
GT
1550 sqlStmt += pDb->SQLTableName(tableName);
1551// sqlStmt += tableName;
2beca662
GT
1552 sqlStmt += wxT("_PIDX");
1553 }
89894079
VZ
1554 }
1555 // Append the closing parentheses for the create table statement
4fdae997 1556 sqlStmt += wxT(")");
a2115c88 1557
4fdae997 1558 pDb->WriteSqlLog(sqlStmt);
1fc5dd6f 1559
a2115c88 1560#ifdef DBDEBUG_CONSOLE
f6bcfd97 1561 cout << endl << sqlStmt.c_str() << endl;
108106cf
JS
1562#endif
1563
89894079 1564 // Execute the CREATE TABLE statement
8a39593e 1565 RETCODE retcode = SQLExecDirect(hstmt, (SQLTCHAR FAR *) sqlStmt.c_str(), SQL_NTS);
89894079
VZ
1566 if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO)
1567 {
1568 pDb->DispAllErrors(henv, hdbc, hstmt);
1569 pDb->RollbackTrans();
1570 CloseCursor(hstmt);
68379eaf 1571 return false;
89894079
VZ
1572 }
1573
1574 // Commit the transaction and close the cursor
3ca6a5f0 1575 if (!pDb->CommitTrans())
68379eaf 1576 return false;
3ca6a5f0 1577 if (!CloseCursor(hstmt))
68379eaf 1578 return false;
89894079
VZ
1579
1580 // Database table created successfully
68379eaf 1581 return true;
108106cf 1582
f6bcfd97 1583} // wxDbTable::CreateTable()
108106cf 1584
67e9aaa3 1585
f6bcfd97
BP
1586/********** wxDbTable::DropTable() **********/
1587bool wxDbTable::DropTable()
a2115c88 1588{
68379eaf 1589 // NOTE: This function returns true if the Table does not exist, but
89894079 1590 // only for identified databases. Code will need to be added
0b8410f3 1591 // below for any other databases when those databases are defined
89894079 1592 // to handle this situation consistently
a2115c88 1593
1e92909e 1594 wxString sqlStmt;
a2115c88 1595
1d6f2348
VZ
1596 sqlStmt.Printf(wxT("DROP TABLE %s"),
1597 pDb->SQLTableName(tableName.c_str()).c_str());
a2115c88 1598
4fdae997 1599 pDb->WriteSqlLog(sqlStmt);
a2115c88
GT
1600
1601#ifdef DBDEBUG_CONSOLE
f6bcfd97 1602 cout << endl << sqlStmt.c_str() << endl;
a2115c88
GT
1603#endif
1604
8a39593e 1605 RETCODE retcode = SQLExecDirect(hstmt, (SQLTCHAR FAR *) sqlStmt.c_str(), SQL_NTS);
2beca662 1606 if (retcode != SQL_SUCCESS)
89894079
VZ
1607 {
1608 // Check for "Base table not found" error and ignore
da38429d 1609 pDb->GetNextError(henv, hdbc, hstmt);
2beca662 1610 if (wxStrcmp(pDb->sqlState, wxT("S0002")) /*&&
da38429d 1611 wxStrcmp(pDb->sqlState, wxT("S1000"))*/) // "Base table not found"
2beca662 1612 {
89894079 1613 // Check for product specific error codes
2beca662 1614 if (!((pDb->Dbms() == dbmsSYBASE_ASA && !wxStrcmp(pDb->sqlState,wxT("42000"))) || // 5.x (and lower?)
da38429d 1615 (pDb->Dbms() == dbmsSYBASE_ASE && !wxStrcmp(pDb->sqlState,wxT("37000"))) ||
2beca662 1616 (pDb->Dbms() == dbmsPERVASIVE_SQL && !wxStrcmp(pDb->sqlState,wxT("S1000"))) || // Returns an S1000 then an S0002
da38429d 1617 (pDb->Dbms() == dbmsPOSTGRES && !wxStrcmp(pDb->sqlState,wxT("08S01")))))
89894079
VZ
1618 {
1619 pDb->DispNextError();
1620 pDb->DispAllErrors(henv, hdbc, hstmt);
1621 pDb->RollbackTrans();
5a226de0 1622// CloseCursor(hstmt);
68379eaf 1623 return false;
89894079
VZ
1624 }
1625 }
1626 }
1627
1628 // Commit the transaction and close the cursor
1629 if (! pDb->CommitTrans())
68379eaf 1630 return false;
89894079 1631 if (! CloseCursor(hstmt))
68379eaf 1632 return false;
89894079 1633
68379eaf 1634 return true;
f6bcfd97 1635} // wxDbTable::DropTable()
a2115c88 1636
67e9aaa3 1637
f6bcfd97 1638/********** wxDbTable::CreateIndex() **********/
87cc3456 1639bool wxDbTable::CreateIndex(const wxString &idxName, bool unique, UWORD noIdxCols,
2beca662 1640 wxDbIdxDef *pIdxDefs, bool attemptDrop)
108106cf 1641{
1e92909e 1642 wxString sqlStmt;
89894079
VZ
1643
1644 // Drop the index first
1645 if (attemptDrop && !DropIndex(idxName))
68379eaf 1646 return false;
89894079 1647
3ca6a5f0
BP
1648 // MySQL (and possibly Sybase ASE?? - gt) require that any columns which are used as portions
1649 // of an index have the columns defined as "NOT NULL". During initial table creation though,
1650 // it may not be known which columns are necessarily going to be part of an index (e.g. the
1651 // table was created, then months later you determine that an additional index while
1652 // give better performance, so you want to add an index).
1653 //
1654 // The following block of code will modify the column definition to make the column be
1655 // defined with the "NOT NULL" qualifier.
1656 if (pDb->Dbms() == dbmsMY_SQL)
1657 {
1658 wxString sqlStmt;
1659 int i;
68379eaf 1660 bool ok = true;
3ca6a5f0
BP
1661 for (i = 0; i < noIdxCols && ok; i++)
1662 {
1663 int j = 0;
68379eaf 1664 bool found = false;
3ca6a5f0
BP
1665 // Find the column definition that has the ColName that matches the
1666 // index column name. We need to do this to get the DB_DATA_TYPE of
1667 // the index column, as MySQL's syntax for the ALTER column requires
1668 // this information
1669 while (!found && (j < this->noCols))
1670 {
1671 if (wxStrcmp(colDefs[j].ColName,pIdxDefs[i].ColName) == 0)
68379eaf 1672 found = true;
3ca6a5f0
BP
1673 if (!found)
1674 j++;
1675 }
da38429d 1676
3ca6a5f0
BP
1677 if (found)
1678 {
4fdae997 1679 ok = pDb->ModifyColumn(tableName, pIdxDefs[i].ColName,
e4e45573 1680 colDefs[j].DbDataType, (int)(colDefs[j].SzDataObj / sizeof(wxChar)),
4fdae997
GT
1681 wxT("NOT NULL"));
1682
3ca6a5f0
BP
1683 if (!ok)
1684 {
8a39593e
JS
1685 #if 0
1686 // retcode is not used
3ca6a5f0
BP
1687 wxODBC_ERRORS retcode;
1688 // Oracle returns a DB_ERR_GENERAL_ERROR if the column is already
1689 // defined to be NOT NULL, but reportedly MySQL doesn't mind.
1690 // This line is just here for debug checking of the value
1691 retcode = (wxODBC_ERRORS)pDb->DB_STATUS;
8a39593e 1692 #endif
3ca6a5f0
BP
1693 }
1694 }
1695 else
68379eaf 1696 ok = false;
3ca6a5f0
BP
1697 }
1698 if (ok)
1699 pDb->CommitTrans();
1700 else
1701 {
1702 pDb->RollbackTrans();
68379eaf 1703 return false;
3ca6a5f0
BP
1704 }
1705 }
da38429d 1706
89894079 1707 // Build a CREATE INDEX statement
4fdae997 1708 sqlStmt = wxT("CREATE ");
89894079 1709 if (unique)
4fdae997 1710 sqlStmt += wxT("UNIQUE ");
da38429d 1711
4fdae997 1712 sqlStmt += wxT("INDEX ");
243d4b36 1713 sqlStmt += pDb->SQLTableName(idxName);
4fdae997 1714 sqlStmt += wxT(" ON ");
243d4b36
GT
1715
1716 sqlStmt += pDb->SQLTableName(tableName);
1717// sqlStmt += tableName;
4fdae997 1718 sqlStmt += wxT(" (");
da38429d 1719
89894079
VZ
1720 // Append list of columns making up index
1721 int i;
1722 for (i = 0; i < noIdxCols; i++)
1723 {
243d4b36
GT
1724 sqlStmt += pDb->SQLColumnName(pIdxDefs[i].ColName);
1725// sqlStmt += pIdxDefs[i].ColName;
9082f1a9 1726
9c136858
JS
1727 // MySQL requires a key length on VARCHAR keys
1728 if ( pDb->Dbms() == dbmsMY_SQL )
1729 {
1730 // Find the details on this column
1731 int j;
1732 for ( j = 0; j < noCols; ++j )
1733 {
1734 if ( wxStrcmp( pIdxDefs[i].ColName, colDefs[j].ColName ) == 0 )
1735 {
1736 break;
1737 }
1738 }
1739 if ( colDefs[j].DbDataType == DB_DATA_TYPE_VARCHAR)
1740 {
1741 wxString s;
e4e45573 1742 s.Printf(wxT("(%d)"), (int)(colDefs[i].SzDataObj / sizeof(wxChar)));
9c136858
JS
1743 sqlStmt += s;
1744 }
1745 }
68379eaf 1746
9082f1a9 1747 // Postgres and SQL Server 7 do not support the ASC/DESC keywords for index columns
8a39593e 1748 if (!((pDb->Dbms() == dbmsMS_SQL_SERVER) && (wxStrncmp(pDb->dbInf.dbmsVer,_T("07"),2)==0)) &&
9082f1a9 1749 !(pDb->Dbms() == dbmsPOSTGRES))
89894079
VZ
1750 {
1751 if (pIdxDefs[i].Ascending)
4fdae997 1752 sqlStmt += wxT(" ASC");
89894079 1753 else
4fdae997 1754 sqlStmt += wxT(" DESC");
89894079 1755 }
9082f1a9 1756 else
8a39593e 1757 wxASSERT_MSG(pIdxDefs[i].Ascending, _T("Datasource does not support DESCending index columns"));
89894079
VZ
1758
1759 if ((i + 1) < noIdxCols)
4fdae997 1760 sqlStmt += wxT(",");
89894079 1761 }
da38429d 1762
89894079 1763 // Append closing parentheses
4fdae997 1764 sqlStmt += wxT(")");
89894079 1765
4fdae997 1766 pDb->WriteSqlLog(sqlStmt);
1fc5dd6f 1767
a2115c88 1768#ifdef DBDEBUG_CONSOLE
f6bcfd97 1769 cout << endl << sqlStmt.c_str() << endl << endl;
108106cf
JS
1770#endif
1771
89894079 1772 // Execute the CREATE INDEX statement
8a39593e 1773 if (SQLExecDirect(hstmt, (SQLTCHAR FAR *) sqlStmt.c_str(), SQL_NTS) != SQL_SUCCESS)
89894079
VZ
1774 {
1775 pDb->DispAllErrors(henv, hdbc, hstmt);
1776 pDb->RollbackTrans();
1777 CloseCursor(hstmt);
68379eaf 1778 return false;
89894079 1779 }
108106cf 1780
89894079
VZ
1781 // Commit the transaction and close the cursor
1782 if (! pDb->CommitTrans())
68379eaf 1783 return false;
89894079 1784 if (! CloseCursor(hstmt))
68379eaf 1785 return false;
108106cf 1786
89894079 1787 // Index Created Successfully
68379eaf 1788 return true;
108106cf 1789
f6bcfd97 1790} // wxDbTable::CreateIndex()
108106cf 1791
67e9aaa3 1792
f6bcfd97 1793/********** wxDbTable::DropIndex() **********/
4fdae997 1794bool wxDbTable::DropIndex(const wxString &idxName)
a2115c88 1795{
68379eaf 1796 // NOTE: This function returns true if the Index does not exist, but
89894079 1797 // only for identified databases. Code will need to be added
5a226de0 1798 // below for any other databases when those databases are defined
89894079 1799 // to handle this situation consistently
a2115c88 1800
1e92909e 1801 wxString sqlStmt;
a2115c88 1802
5a226de0
GT
1803 if (pDb->Dbms() == dbmsACCESS || pDb->Dbms() == dbmsMY_SQL ||
1804 pDb->Dbms() == dbmsDBASE /*|| Paradox needs this syntax too when we add support*/)
1d6f2348
VZ
1805 sqlStmt.Printf(wxT("DROP INDEX %s ON %s"),
1806 pDb->SQLTableName(idxName.c_str()).c_str(),
6bbff0aa 1807 pDb->SQLTableName(tableName.c_str()).c_str());
e93a3a18 1808 else if ((pDb->Dbms() == dbmsMS_SQL_SERVER) ||
9f4de2dc 1809 (pDb->Dbms() == dbmsSYBASE_ASE) ||
52410d54 1810 (pDb->Dbms() == dbmsXBASE_SEQUITER))
1d6f2348
VZ
1811 sqlStmt.Printf(wxT("DROP INDEX %s.%s"),
1812 pDb->SQLTableName(tableName.c_str()).c_str(),
1813 pDb->SQLTableName(idxName.c_str()).c_str());
89894079 1814 else
1d6f2348
VZ
1815 sqlStmt.Printf(wxT("DROP INDEX %s"),
1816 pDb->SQLTableName(idxName.c_str()).c_str());
a2115c88 1817
4fdae997 1818 pDb->WriteSqlLog(sqlStmt);
a2115c88
GT
1819
1820#ifdef DBDEBUG_CONSOLE
f6bcfd97 1821 cout << endl << sqlStmt.c_str() << endl;
a2115c88
GT
1822#endif
1823
8a39593e 1824 if (SQLExecDirect(hstmt, (SQLTCHAR FAR *) sqlStmt.c_str(), SQL_NTS) != SQL_SUCCESS)
89894079
VZ
1825 {
1826 // Check for "Index not found" error and ignore
1827 pDb->GetNextError(henv, hdbc, hstmt);
4fdae997 1828 if (wxStrcmp(pDb->sqlState,wxT("S0012"))) // "Index not found"
89894079
VZ
1829 {
1830 // Check for product specific error codes
4fdae997
GT
1831 if (!((pDb->Dbms() == dbmsSYBASE_ASA && !wxStrcmp(pDb->sqlState,wxT("42000"))) || // v5.x (and lower?)
1832 (pDb->Dbms() == dbmsSYBASE_ASE && !wxStrcmp(pDb->sqlState,wxT("37000"))) ||
1833 (pDb->Dbms() == dbmsMS_SQL_SERVER && !wxStrcmp(pDb->sqlState,wxT("S1000"))) ||
9082f1a9 1834 (pDb->Dbms() == dbmsINTERBASE && !wxStrcmp(pDb->sqlState,wxT("S1000"))) ||
4fdae997
GT
1835 (pDb->Dbms() == dbmsSYBASE_ASE && !wxStrcmp(pDb->sqlState,wxT("S0002"))) || // Base table not found
1836 (pDb->Dbms() == dbmsMY_SQL && !wxStrcmp(pDb->sqlState,wxT("42S12"))) || // tested by Christopher Ludwik Marino-Cebulski using v3.23.21beta
1837 (pDb->Dbms() == dbmsPOSTGRES && !wxStrcmp(pDb->sqlState,wxT("08S01")))
3ca6a5f0 1838 ))
89894079
VZ
1839 {
1840 pDb->DispNextError();
1841 pDb->DispAllErrors(henv, hdbc, hstmt);
1842 pDb->RollbackTrans();
1843 CloseCursor(hstmt);
68379eaf 1844 return false;
89894079
VZ
1845 }
1846 }
1847 }
1848
1849 // Commit the transaction and close the cursor
1850 if (! pDb->CommitTrans())
68379eaf 1851 return false;
89894079 1852 if (! CloseCursor(hstmt))
68379eaf 1853 return false;
89894079 1854
68379eaf 1855 return true;
f6bcfd97 1856} // wxDbTable::DropIndex()
a2115c88 1857
67e9aaa3 1858
38cfbffa 1859/********** wxDbTable::SetOrderByColNums() **********/
e938ff5e 1860bool wxDbTable::SetOrderByColNums(UWORD first, ... )
38cfbffa 1861{
2beca662 1862 int colNo = first; // using 'int' to be able to look for wxDB_NO_MORE_COLUN_NUMBERS
38cfbffa
GT
1863 va_list argptr;
1864
68379eaf 1865 bool abort = false;
38cfbffa
GT
1866 wxString tempStr;
1867
1868 va_start(argptr, first); /* Initialize variable arguments. */
1869 while (!abort && (colNo != wxDB_NO_MORE_COLUMN_NUMBERS))
1870 {
1871 // Make sure the passed in column number
1872 // is within the valid range of columns
1873 //
1874 // Valid columns are 0 thru noCols-1
1875 if (colNo >= noCols || colNo < 0)
1876 {
68379eaf 1877 abort = true;
38cfbffa
GT
1878 continue;
1879 }
1880
1881 if (colNo != first)
4fdae997 1882 tempStr += wxT(",");
38cfbffa
GT
1883
1884 tempStr += colDefs[colNo].ColName;
1885 colNo = va_arg (argptr, int);
1886 }
1887 va_end (argptr); /* Reset variable arguments. */
1888
4fdae997 1889 SetOrderByClause(tempStr);
38cfbffa
GT
1890
1891 return (!abort);
1892} // wxDbTable::SetOrderByColNums()
1893
1894
f6bcfd97
BP
1895/********** wxDbTable::Insert() **********/
1896int wxDbTable::Insert(void)
108106cf 1897{
4fdae997 1898 wxASSERT(!queryOnly);
f6bcfd97 1899 if (queryOnly || !insertable)
89894079
VZ
1900 return(DB_FAILURE);
1901
1902 bindInsertParams();
1903
1904 // Insert the record by executing the already prepared insert statement
1905 RETCODE retcode;
1906 retcode=SQLExecute(hstmtInsert);
5962bdb8
JS
1907 if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO &&
1908 retcode != SQL_NEED_DATA)
89894079
VZ
1909 {
1910 // Check to see if integrity constraint was violated
1911 pDb->GetNextError(henv, hdbc, hstmtInsert);
4fdae997 1912 if (! wxStrcmp(pDb->sqlState, wxT("23000"))) // Integrity constraint violated
89894079
VZ
1913 return(DB_ERR_INTEGRITY_CONSTRAINT_VIOL);
1914 else
1915 {
1916 pDb->DispNextError();
1917 pDb->DispAllErrors(henv, hdbc, hstmtInsert);
1918 return(DB_FAILURE);
1919 }
1920 }
5962bdb8
JS
1921 if (retcode == SQL_NEED_DATA)
1922 {
1923 PTR pParmID;
8a39593e
JS
1924 retcode = SQLParamData(hstmtInsert, &pParmID);
1925 while (retcode == SQL_NEED_DATA)
5962bdb8
JS
1926 {
1927 // Find the parameter
1928 int i;
1929 for (i=0; i < noCols; i++)
1930 {
1931 if (colDefs[i].PtrDataObj == pParmID)
1932 {
1933 // We found it. Store the parameter.
1934 retcode = SQLPutData(hstmtInsert, pParmID, colDefs[i].SzDataObj);
1935 if (retcode != SQL_SUCCESS)
1936 {
1937 pDb->DispNextError();
1938 pDb->DispAllErrors(henv, hdbc, hstmtInsert);
1939 return(DB_FAILURE);
1940 }
1941 break;
1942 }
1943 }
c9b6d796 1944 retcode = SQLParamData(hstmtInsert, &pParmID);
160155e6
GT
1945 if (retcode != SQL_SUCCESS &&
1946 retcode != SQL_SUCCESS_WITH_INFO)
1947 {
1948 // record was not inserted
1949 pDb->DispNextError();
1950 pDb->DispAllErrors(henv, hdbc, hstmtInsert);
1951 return(DB_FAILURE);
1952 }
5962bdb8
JS
1953 }
1954 }
89894079
VZ
1955
1956 // Record inserted into the datasource successfully
1957 return(DB_SUCCESS);
108106cf 1958
f6bcfd97 1959} // wxDbTable::Insert()
108106cf 1960
67e9aaa3 1961
f6bcfd97
BP
1962/********** wxDbTable::Update() **********/
1963bool wxDbTable::Update(void)
108106cf 1964{
4fdae997 1965 wxASSERT(!queryOnly);
89894079 1966 if (queryOnly)
68379eaf 1967 return false;
a2115c88 1968
4fdae997 1969 wxString sqlStmt;
108106cf 1970
89894079 1971 // Build the SQL UPDATE statement
f6bcfd97 1972 BuildUpdateStmt(sqlStmt, DB_UPD_KEYFIELDS);
108106cf 1973
89894079 1974 pDb->WriteSqlLog(sqlStmt);
1fc5dd6f 1975
a2115c88 1976#ifdef DBDEBUG_CONSOLE
4fdae997 1977 cout << endl << sqlStmt.c_str() << endl << endl;
108106cf
JS
1978#endif
1979
89894079
VZ
1980 // Execute the SQL UPDATE statement
1981 return(execUpdate(sqlStmt));
108106cf 1982
f6bcfd97 1983} // wxDbTable::Update()
108106cf 1984
67e9aaa3 1985
f6bcfd97 1986/********** wxDbTable::Update(pSqlStmt) **********/
4fdae997 1987bool wxDbTable::Update(const wxString &pSqlStmt)
6919c53f 1988{
4fdae997 1989 wxASSERT(!queryOnly);
89894079 1990 if (queryOnly)
68379eaf 1991 return false;
6919c53f 1992
89894079 1993 pDb->WriteSqlLog(pSqlStmt);
6919c53f 1994
89894079 1995 return(execUpdate(pSqlStmt));
6919c53f 1996
f6bcfd97 1997} // wxDbTable::Update(pSqlStmt)
6919c53f 1998
67e9aaa3 1999
f6bcfd97 2000/********** wxDbTable::UpdateWhere() **********/
4fdae997 2001bool wxDbTable::UpdateWhere(const wxString &pWhereClause)
108106cf 2002{
4fdae997 2003 wxASSERT(!queryOnly);
89894079 2004 if (queryOnly)
68379eaf 2005 return false;
a2115c88 2006
4fdae997 2007 wxString sqlStmt;
108106cf 2008
89894079 2009 // Build the SQL UPDATE statement
f6bcfd97 2010 BuildUpdateStmt(sqlStmt, DB_UPD_WHERE, pWhereClause);
108106cf 2011
89894079 2012 pDb->WriteSqlLog(sqlStmt);
1fc5dd6f 2013
a2115c88 2014#ifdef DBDEBUG_CONSOLE
4fdae997 2015 cout << endl << sqlStmt.c_str() << endl << endl;
108106cf
JS
2016#endif
2017
89894079
VZ
2018 // Execute the SQL UPDATE statement
2019 return(execUpdate(sqlStmt));
108106cf 2020
f6bcfd97 2021} // wxDbTable::UpdateWhere()
108106cf 2022
67e9aaa3 2023
f6bcfd97
BP
2024/********** wxDbTable::Delete() **********/
2025bool wxDbTable::Delete(void)
108106cf 2026{
4fdae997 2027 wxASSERT(!queryOnly);
89894079 2028 if (queryOnly)
68379eaf 2029 return false;
a2115c88 2030
4fdae997
GT
2031 wxString sqlStmt;
2032 sqlStmt.Empty();
108106cf 2033
89894079 2034 // Build the SQL DELETE statement
f6bcfd97 2035 BuildDeleteStmt(sqlStmt, DB_DEL_KEYFIELDS);
108106cf 2036
89894079 2037 pDb->WriteSqlLog(sqlStmt);
1fc5dd6f 2038
89894079
VZ
2039 // Execute the SQL DELETE statement
2040 return(execDelete(sqlStmt));
108106cf 2041
f6bcfd97 2042} // wxDbTable::Delete()
108106cf 2043
67e9aaa3 2044
f6bcfd97 2045/********** wxDbTable::DeleteWhere() **********/
4fdae997 2046bool wxDbTable::DeleteWhere(const wxString &pWhereClause)
108106cf 2047{
4fdae997 2048 wxASSERT(!queryOnly);
89894079 2049 if (queryOnly)
68379eaf 2050 return false;
a2115c88 2051
4fdae997
GT
2052 wxString sqlStmt;
2053 sqlStmt.Empty();
108106cf 2054
89894079 2055 // Build the SQL DELETE statement
f6bcfd97 2056 BuildDeleteStmt(sqlStmt, DB_DEL_WHERE, pWhereClause);
108106cf 2057
89894079 2058 pDb->WriteSqlLog(sqlStmt);
1fc5dd6f 2059
89894079
VZ
2060 // Execute the SQL DELETE statement
2061 return(execDelete(sqlStmt));
108106cf 2062
f6bcfd97 2063} // wxDbTable::DeleteWhere()
108106cf 2064
67e9aaa3 2065
f6bcfd97
BP
2066/********** wxDbTable::DeleteMatching() **********/
2067bool wxDbTable::DeleteMatching(void)
108106cf 2068{
4fdae997 2069 wxASSERT(!queryOnly);
89894079 2070 if (queryOnly)
68379eaf 2071 return false;
a2115c88 2072
4fdae997
GT
2073 wxString sqlStmt;
2074 sqlStmt.Empty();
108106cf 2075
89894079 2076 // Build the SQL DELETE statement
f6bcfd97 2077 BuildDeleteStmt(sqlStmt, DB_DEL_MATCHING);
108106cf 2078
89894079 2079 pDb->WriteSqlLog(sqlStmt);
1fc5dd6f 2080
89894079
VZ
2081 // Execute the SQL DELETE statement
2082 return(execDelete(sqlStmt));
108106cf 2083
f6bcfd97 2084} // wxDbTable::DeleteMatching()
108106cf 2085
67e9aaa3 2086
f6bcfd97 2087/********** wxDbTable::IsColNull() **********/
882fc8a9 2088bool wxDbTable::IsColNull(UWORD colNo) const
108106cf 2089{
f02d4a64 2090/*
68379eaf 2091 This logic is just not right. It would indicate true
f02d4a64
GT
2092 if a numeric field were set to a value of 0.
2093
89894079
VZ
2094 switch(colDefs[colNo].SqlCtype)
2095 {
3ca6a5f0 2096 case SQL_C_CHAR:
e4e45573
GT
2097 case SQL_C_WCHAR:
2098 //case SQL_C_WXCHAR: SQL_C_WXCHAR is covered by either SQL_C_CHAR or SQL_C_WCHAR
3ca6a5f0
BP
2099 return(((UCHAR FAR *) colDefs[colNo].PtrDataObj)[0] == 0);
2100 case SQL_C_SSHORT:
2101 return(( *((SWORD *) colDefs[colNo].PtrDataObj)) == 0);
2102 case SQL_C_USHORT:
2103 return(( *((UWORD*) colDefs[colNo].PtrDataObj)) == 0);
2104 case SQL_C_SLONG:
2105 return(( *((SDWORD *) colDefs[colNo].PtrDataObj)) == 0);
2106 case SQL_C_ULONG:
2107 return(( *((UDWORD *) colDefs[colNo].PtrDataObj)) == 0);
2108 case SQL_C_FLOAT:
2109 return(( *((SFLOAT *) colDefs[colNo].PtrDataObj)) == 0);
2110 case SQL_C_DOUBLE:
2111 return((*((SDOUBLE *) colDefs[colNo].PtrDataObj)) == 0);
2112 case SQL_C_TIMESTAMP:
2113 TIMESTAMP_STRUCT *pDt;
2114 pDt = (TIMESTAMP_STRUCT *) colDefs[colNo].PtrDataObj;
2115 if (pDt->year == 0 && pDt->month == 0 && pDt->day == 0)
68379eaf 2116 return true;
3ca6a5f0 2117 else
68379eaf 2118 return false;
3ca6a5f0 2119 default:
68379eaf 2120 return true;
89894079 2121 }
f02d4a64
GT
2122*/
2123 return (colDefs[colNo].Null);
f6bcfd97 2124} // wxDbTable::IsColNull()
108106cf 2125
67e9aaa3 2126
f6bcfd97
BP
2127/********** wxDbTable::CanSelectForUpdate() **********/
2128bool wxDbTable::CanSelectForUpdate(void)
108106cf 2129{
38cfbffa 2130 if (queryOnly)
68379eaf 2131 return false;
38cfbffa 2132
89894079 2133 if (pDb->Dbms() == dbmsMY_SQL)
68379eaf 2134 return false;
a2115c88 2135
e93a3a18
GT
2136 if ((pDb->Dbms() == dbmsORACLE) ||
2137 (pDb->dbInf.posStmts & SQL_PS_SELECT_FOR_UPDATE))
68379eaf 2138 return true;
89894079 2139 else
68379eaf 2140 return false;
108106cf 2141
f6bcfd97 2142} // wxDbTable::CanSelectForUpdate()
108106cf 2143
67e9aaa3 2144
f6bcfd97
BP
2145/********** wxDbTable::CanUpdByROWID() **********/
2146bool wxDbTable::CanUpdByROWID(void)
108106cf 2147{
67e9aaa3 2148/*
68379eaf 2149 * NOTE: Returning false for now until this can be debugged,
89894079 2150 * as the ROWID is not getting updated correctly
67e9aaa3 2151 */
68379eaf 2152 return false;
6b3f4fb8 2153/*
89894079 2154 if (pDb->Dbms() == dbmsORACLE)
68379eaf 2155 return true;
89894079 2156 else
68379eaf 2157 return false;
6b3f4fb8 2158*/
f6bcfd97 2159} // wxDbTable::CanUpdByROWID()
108106cf 2160
67e9aaa3 2161
f6bcfd97
BP
2162/********** wxDbTable::IsCursorClosedOnCommit() **********/
2163bool wxDbTable::IsCursorClosedOnCommit(void)
108106cf 2164{
89894079 2165 if (pDb->dbInf.cursorCommitBehavior == SQL_CB_PRESERVE)
68379eaf 2166 return false;
89894079 2167 else
68379eaf 2168 return true;
108106cf 2169
f6bcfd97 2170} // wxDbTable::IsCursorClosedOnCommit()
108106cf 2171
67e9aaa3 2172
f02d4a64
GT
2173
2174/********** wxDbTable::ClearMemberVar() **********/
e938ff5e 2175void wxDbTable::ClearMemberVar(UWORD colNo, bool setToNull)
108106cf 2176{
4fdae997 2177 wxASSERT(colNo < noCols);
f02d4a64
GT
2178
2179 switch(colDefs[colNo].SqlCtype)
89894079 2180 {
f02d4a64 2181 case SQL_C_CHAR:
5c2cd0f6 2182#ifndef __UNIX__
e4e45573 2183 case SQL_C_WCHAR:
5c2cd0f6 2184#endif
e4e45573 2185 //case SQL_C_WXCHAR: SQL_C_WXCHAR is covered by either SQL_C_CHAR or SQL_C_WCHAR
f02d4a64
GT
2186 ((UCHAR FAR *) colDefs[colNo].PtrDataObj)[0] = 0;
2187 break;
2188 case SQL_C_SSHORT:
2189 *((SWORD *) colDefs[colNo].PtrDataObj) = 0;
2190 break;
2191 case SQL_C_USHORT:
2192 *((UWORD*) colDefs[colNo].PtrDataObj) = 0;
2193 break;
f292d0ec 2194 case SQL_C_LONG:
f02d4a64
GT
2195 case SQL_C_SLONG:
2196 *((SDWORD *) colDefs[colNo].PtrDataObj) = 0;
2197 break;
2198 case SQL_C_ULONG:
2199 *((UDWORD *) colDefs[colNo].PtrDataObj) = 0;
2200 break;
2201 case SQL_C_FLOAT:
2202 *((SFLOAT *) colDefs[colNo].PtrDataObj) = 0.0f;
2203 break;
2204 case SQL_C_DOUBLE:
2205 *((SDOUBLE *) colDefs[colNo].PtrDataObj) = 0.0f;
2206 break;
2207 case SQL_C_TIMESTAMP:
2208 TIMESTAMP_STRUCT *pDt;
2209 pDt = (TIMESTAMP_STRUCT *) colDefs[colNo].PtrDataObj;
2210 pDt->year = 0;
2211 pDt->month = 0;
2212 pDt->day = 0;
2213 pDt->hour = 0;
2214 pDt->minute = 0;
2215 pDt->second = 0;
2216 pDt->fraction = 0;
2217 break;
89894079 2218 }
108106cf 2219
f02d4a64
GT
2220 if (setToNull)
2221 SetColNull(colNo);
2222} // wxDbTable::ClearMemberVar()
2223
2224
2225/********** wxDbTable::ClearMemberVars() **********/
2226void wxDbTable::ClearMemberVars(bool setToNull)
2227{
2228 int i;
2229
2230 // Loop through the columns setting each member variable to zero
2231 for (i=0; i < noCols; i++)
254a2129 2232 ClearMemberVar((UWORD)i,setToNull);
f02d4a64 2233
f6bcfd97 2234} // wxDbTable::ClearMemberVars()
108106cf 2235
67e9aaa3 2236
f6bcfd97
BP
2237/********** wxDbTable::SetQueryTimeout() **********/
2238bool wxDbTable::SetQueryTimeout(UDWORD nSeconds)
108106cf 2239{
89894079
VZ
2240 if (SQLSetStmtOption(hstmtInsert, SQL_QUERY_TIMEOUT, nSeconds) != SQL_SUCCESS)
2241 return(pDb->DispAllErrors(henv, hdbc, hstmtInsert));
2242 if (SQLSetStmtOption(hstmtUpdate, SQL_QUERY_TIMEOUT, nSeconds) != SQL_SUCCESS)
2243 return(pDb->DispAllErrors(henv, hdbc, hstmtUpdate));
2244 if (SQLSetStmtOption(hstmtDelete, SQL_QUERY_TIMEOUT, nSeconds) != SQL_SUCCESS)
2245 return(pDb->DispAllErrors(henv, hdbc, hstmtDelete));
2246 if (SQLSetStmtOption(hstmtInternal, SQL_QUERY_TIMEOUT, nSeconds) != SQL_SUCCESS)
2247 return(pDb->DispAllErrors(henv, hdbc, hstmtInternal));
2248
2249 // Completed Successfully
68379eaf 2250 return true;
108106cf 2251
f6bcfd97 2252} // wxDbTable::SetQueryTimeout()
108106cf 2253
67e9aaa3 2254
f6bcfd97 2255/********** wxDbTable::SetColDefs() **********/
87cc3456 2256void wxDbTable::SetColDefs(UWORD index, const wxString &fieldName, int dataType, void *pData,
6b3f4fb8 2257 SWORD cType, int size, bool keyField, bool upd,
e93a3a18 2258 bool insAllow, bool derivedCol)
108106cf 2259{
ff294e0e
GT
2260 wxASSERT_MSG( index < noCols,
2261 _T("Specified column index exceeds the maximum number of columns for this table.") );
2262
89894079
VZ
2263 if (!colDefs) // May happen if the database connection fails
2264 return;
2265
4fdae997 2266 if (fieldName.Length() > (unsigned int) DB_MAX_COLUMN_NAME_LEN)
89894079 2267 {
9082f1a9 2268 wxStrncpy(colDefs[index].ColName, fieldName, DB_MAX_COLUMN_NAME_LEN);
89894079 2269 colDefs[index].ColName[DB_MAX_COLUMN_NAME_LEN] = 0;
da38429d
VZ
2270
2271#ifdef __WXDEBUG__
9082f1a9 2272 wxString tmpMsg;
da38429d
VZ
2273 tmpMsg.Printf(_T("Column name '%s' is too long. Truncated to '%s'."),
2274 fieldName.c_str(),colDefs[index].ColName);
2275 wxFAIL_MSG(tmpMsg);
2276#endif // __WXDEBUG__
89894079
VZ
2277 }
2278 else
2279 wxStrcpy(colDefs[index].ColName, fieldName);
2280
2281 colDefs[index].DbDataType = dataType;
2282 colDefs[index].PtrDataObj = pData;
2283 colDefs[index].SqlCtype = cType;
e4e45573 2284 colDefs[index].SzDataObj = size; //TODO: glt ??? * sizeof(wxChar) ???
89894079
VZ
2285 colDefs[index].KeyField = keyField;
2286 colDefs[index].DerivedCol = derivedCol;
2287 // Derived columns by definition would NOT be "Insertable" or "Updateable"
2288 if (derivedCol)
2289 {
68379eaf
WS
2290 colDefs[index].Updateable = false;
2291 colDefs[index].InsertAllowed = false;
89894079
VZ
2292 }
2293 else
2294 {
2295 colDefs[index].Updateable = upd;
2296 colDefs[index].InsertAllowed = insAllow;
2297 }
2298
68379eaf 2299 colDefs[index].Null = false;
da38429d 2300
f6bcfd97 2301} // wxDbTable::SetColDefs()
108106cf 2302
67e9aaa3 2303
e93a3a18 2304/********** wxDbTable::SetColDefs() **********/
87cc3456 2305wxDbColDataPtr* wxDbTable::SetColDefs(wxDbColInf *pColInfs, UWORD numCols)
67e9aaa3 2306{
4fdae997 2307 wxASSERT(pColInfs);
f6bcfd97 2308 wxDbColDataPtr *pColDataPtrs = NULL;
67e9aaa3 2309
89894079
VZ
2310 if (pColInfs)
2311 {
87cc3456 2312 UWORD index;
da38429d 2313
f6bcfd97 2314 pColDataPtrs = new wxDbColDataPtr[numCols+1];
67e9aaa3
GT
2315
2316 for (index = 0; index < numCols; index++)
89894079 2317 {
89894079
VZ
2318 // Process the fields
2319 switch (pColInfs[index].dbDataType)
2320 {
2321 case DB_DATA_TYPE_VARCHAR:
e4e45573
GT
2322 pColDataPtrs[index].PtrDataObj = new wxChar[pColInfs[index].bufferSize+(1*sizeof(wxChar))];
2323 pColDataPtrs[index].SzDataObj = pColInfs[index].bufferSize+(1*sizeof(wxChar));
2324 pColDataPtrs[index].SqlCtype = SQL_C_WXCHAR;
0b8410f3 2325 break;
89894079 2326 case DB_DATA_TYPE_INTEGER:
67e9aaa3 2327 // Can be long or short
e4e45573 2328 if (pColInfs[index].bufferSize == sizeof(long))
89894079
VZ
2329 {
2330 pColDataPtrs[index].PtrDataObj = new long;
2331 pColDataPtrs[index].SzDataObj = sizeof(long);
2332 pColDataPtrs[index].SqlCtype = SQL_C_SLONG;
2333 }
2334 else
2335 {
2336 pColDataPtrs[index].PtrDataObj = new short;
2337 pColDataPtrs[index].SzDataObj = sizeof(short);
2338 pColDataPtrs[index].SqlCtype = SQL_C_SSHORT;
2339 }
2340 break;
89894079 2341 case DB_DATA_TYPE_FLOAT:
89894079 2342 // Can be float or double
e4e45573 2343 if (pColInfs[index].bufferSize == sizeof(float))
89894079
VZ
2344 {
2345 pColDataPtrs[index].PtrDataObj = new float;
2346 pColDataPtrs[index].SzDataObj = sizeof(float);
2347 pColDataPtrs[index].SqlCtype = SQL_C_FLOAT;
2348 }
2349 else
2350 {
2351 pColDataPtrs[index].PtrDataObj = new double;
2352 pColDataPtrs[index].SzDataObj = sizeof(double);
2353 pColDataPtrs[index].SqlCtype = SQL_C_DOUBLE;
da38429d 2354 }
89894079 2355 break;
89894079 2356 case DB_DATA_TYPE_DATE:
89894079
VZ
2357 pColDataPtrs[index].PtrDataObj = new TIMESTAMP_STRUCT;
2358 pColDataPtrs[index].SzDataObj = sizeof(TIMESTAMP_STRUCT);
2359 pColDataPtrs[index].SqlCtype = SQL_C_TIMESTAMP;
2360 break;
bf5423ea 2361 case DB_DATA_TYPE_BLOB:
da38429d 2362 wxFAIL_MSG(wxT("This form of ::SetColDefs() cannot be used with BLOB columns"));
bf5423ea
GT
2363 pColDataPtrs[index].PtrDataObj = /*BLOB ADDITION NEEDED*/NULL;
2364 pColDataPtrs[index].SzDataObj = /*BLOB ADDITION NEEDED*/sizeof(void *);
2365 pColDataPtrs[index].SqlCtype = SQL_VARBINARY;
2366 break;
2367 }
2368 if (pColDataPtrs[index].PtrDataObj != NULL)
2369 SetColDefs (index,pColInfs[index].colName,pColInfs[index].dbDataType, pColDataPtrs[index].PtrDataObj, pColDataPtrs[index].SqlCtype, pColDataPtrs[index].SzDataObj);
2370 else
2371 {
da38429d 2372 // Unable to build all the column definitions, as either one of
bf5423ea
GT
2373 // the calls to "new" failed above, or there was a BLOB field
2374 // to have a column definition for. If BLOBs are to be used,
2375 // the other form of ::SetColDefs() must be used, as it is impossible
2376 // to know the maximum size to create the PtrDataObj to be.
2377 delete [] pColDataPtrs;
2378 return NULL;
89894079 2379 }
89894079
VZ
2380 }
2381 }
3ca6a5f0 2382
89894079 2383 return (pColDataPtrs);
3ca6a5f0 2384
e93a3a18 2385} // wxDbTable::SetColDefs()
67e9aaa3
GT
2386
2387
f6bcfd97
BP
2388/********** wxDbTable::SetCursor() **********/
2389void wxDbTable::SetCursor(HSTMT *hstmtActivate)
108106cf 2390{
f6bcfd97 2391 if (hstmtActivate == wxDB_DEFAULT_CURSOR)
89894079
VZ
2392 hstmt = *hstmtDefault;
2393 else
2394 hstmt = *hstmtActivate;
108106cf 2395
f6bcfd97 2396} // wxDbTable::SetCursor()
108106cf 2397
67e9aaa3 2398
4fdae997
GT
2399/********** wxDbTable::Count(const wxString &) **********/
2400ULONG wxDbTable::Count(const wxString &args)
108106cf 2401{
3ca6a5f0 2402 ULONG count;
1e92909e 2403 wxString sqlStmt;
89894079
VZ
2404 SDWORD cb;
2405
2406 // Build a "SELECT COUNT(*) FROM queryTableName [WHERE whereClause]" SQL Statement
4fdae997 2407 sqlStmt = wxT("SELECT COUNT(");
1e92909e 2408 sqlStmt += args;
4fdae997 2409 sqlStmt += wxT(") FROM ");
243d4b36
GT
2410 sqlStmt += pDb->SQLTableName(queryTableName);
2411// sqlStmt += queryTableName;
f6bcfd97 2412#if wxODBC_BACKWARD_COMPATABILITY
89894079 2413 if (from && wxStrlen(from))
f6bcfd97
BP
2414#else
2415 if (from.Length())
2416#endif
1e92909e 2417 sqlStmt += from;
89894079
VZ
2418
2419 // Add the where clause if one is provided
f6bcfd97 2420#if wxODBC_BACKWARD_COMPATABILITY
89894079 2421 if (where && wxStrlen(where))
f6bcfd97
BP
2422#else
2423 if (where.Length())
2424#endif
89894079 2425 {
4fdae997 2426 sqlStmt += wxT(" WHERE ");
1e92909e 2427 sqlStmt += where;
89894079
VZ
2428 }
2429
4fdae997 2430 pDb->WriteSqlLog(sqlStmt);
89894079
VZ
2431
2432 // Initialize the Count cursor if it's not already initialized
2433 if (!hstmtCount)
2434 {
68379eaf 2435 hstmtCount = GetNewCursor(false,false);
4fdae997 2436 wxASSERT(hstmtCount);
89894079
VZ
2437 if (!hstmtCount)
2438 return(0);
2439 }
2440
2441 // Execute the SQL statement
8a39593e 2442 if (SQLExecDirect(*hstmtCount, (SQLTCHAR FAR *) sqlStmt.c_str(), SQL_NTS) != SQL_SUCCESS)
89894079
VZ
2443 {
2444 pDb->DispAllErrors(henv, hdbc, *hstmtCount);
2445 return(0);
2446 }
2447
2448 // Fetch the record
2449 if (SQLFetch(*hstmtCount) != SQL_SUCCESS)
2450 {
2451 pDb->DispAllErrors(henv, hdbc, *hstmtCount);
2452 return(0);
2453 }
2454
2455 // Obtain the result
6b3f4fb8 2456 if (SQLGetData(*hstmtCount, (UWORD)1, SQL_C_ULONG, &count, sizeof(count), &cb) != SQL_SUCCESS)
89894079
VZ
2457 {
2458 pDb->DispAllErrors(henv, hdbc, *hstmtCount);
2459 return(0);
2460 }
2461
2462 // Free the cursor
2463 if (SQLFreeStmt(*hstmtCount, SQL_CLOSE) != SQL_SUCCESS)
2464 pDb->DispAllErrors(henv, hdbc, *hstmtCount);
2465
2466 // Return the record count
3ca6a5f0 2467 return(count);
108106cf 2468
f6bcfd97 2469} // wxDbTable::Count()
108106cf 2470
67e9aaa3 2471
f6bcfd97
BP
2472/********** wxDbTable::Refresh() **********/
2473bool wxDbTable::Refresh(void)
108106cf 2474{
68379eaf 2475 bool result = true;
89894079
VZ
2476
2477 // Switch to the internal cursor so any active cursors are not corrupted
2478 HSTMT currCursor = GetCursor();
2479 hstmt = hstmtInternal;
f6bcfd97 2480#if wxODBC_BACKWARD_COMPATABILITY
89894079 2481 // Save the where and order by clauses
8a39593e
JS
2482 wxChar *saveWhere = where;
2483 wxChar *saveOrderBy = orderBy;
f6bcfd97
BP
2484#else
2485 wxString saveWhere = where;
2486 wxString saveOrderBy = orderBy;
2487#endif
89894079
VZ
2488 // Build a where clause to refetch the record with. Try and use the
2489 // ROWID if it's available, ow use the key fields.
4fdae997
GT
2490 wxString whereClause;
2491 whereClause.Empty();
2492
89894079
VZ
2493 if (CanUpdByROWID())
2494 {
2495 SDWORD cb;
e4e45573 2496 wxChar rowid[wxDB_ROWID_LEN+1];
89894079
VZ
2497
2498 // Get the ROWID value. If not successful retreiving the ROWID,
2499 // simply fall down through the code and build the WHERE clause
2500 // based on the key fields.
e4e45573 2501 if (SQLGetData(hstmt, (UWORD)(noCols+1), SQL_C_WXCHAR, (UCHAR*) rowid, sizeof(rowid), &cb) == SQL_SUCCESS)
89894079 2502 {
243d4b36
GT
2503 whereClause += pDb->SQLTableName(queryTableName);
2504// whereClause += queryTableName;
4fdae997
GT
2505 whereClause += wxT(".ROWID = '");
2506 whereClause += rowid;
2507 whereClause += wxT("'");
89894079
VZ
2508 }
2509 }
2510
2511 // If unable to use the ROWID, build a where clause from the keyfields
2512 if (wxStrlen(whereClause) == 0)
f6bcfd97 2513 BuildWhereClause(whereClause, DB_WHERE_KEYFIELDS, queryTableName);
89894079
VZ
2514
2515 // Requery the record
2516 where = whereClause;
4fdae997 2517 orderBy.Empty();
89894079 2518 if (!Query())
68379eaf 2519 result = false;
89894079
VZ
2520
2521 if (result && !GetNext())
68379eaf 2522 result = false;
89894079
VZ
2523
2524 // Switch back to original cursor
2525 SetCursor(&currCursor);
2526
2527 // Free the internal cursor
2528 if (SQLFreeStmt(hstmtInternal, SQL_CLOSE) != SQL_SUCCESS)
2529 pDb->DispAllErrors(henv, hdbc, hstmtInternal);
2530
2531 // Restore the original where and order by clauses
1e92909e 2532 where = saveWhere;
89894079
VZ
2533 orderBy = saveOrderBy;
2534
2535 return(result);
108106cf 2536
f6bcfd97 2537} // wxDbTable::Refresh()
108106cf 2538
67e9aaa3 2539
e938ff5e
GT
2540/********** wxDbTable::SetColNull() **********/
2541bool wxDbTable::SetColNull(UWORD colNo, bool set)
a2115c88 2542{
89894079 2543 if (colNo < noCols)
f02d4a64
GT
2544 {
2545 colDefs[colNo].Null = set;
2546 if (set) // Blank out the values in the member variable
68379eaf 2547 ClearMemberVar(colNo, false); // Must call with false here, or infinite recursion will happen
e9ed92a2 2548
0907ea9c 2549 setCbValueForColumn(colNo);
e9ed92a2 2550
68379eaf 2551 return true;
f02d4a64 2552 }
89894079 2553 else
68379eaf 2554 return false;
a2115c88 2555
4fdae997 2556} // wxDbTable::SetColNull()
67e9aaa3 2557
a2115c88 2558
e938ff5e 2559/********** wxDbTable::SetColNull() **********/
4fdae997 2560bool wxDbTable::SetColNull(const wxString &colName, bool set)
a2115c88 2561{
e7c9692f
GT
2562 int colNo;
2563 for (colNo = 0; colNo < noCols; colNo++)
89894079 2564 {
e7c9692f 2565 if (!wxStricmp(colName, colDefs[colNo].ColName))
89894079
VZ
2566 break;
2567 }
2568
e7c9692f 2569 if (colNo < noCols)
f02d4a64 2570 {
e7c9692f 2571 colDefs[colNo].Null = set;
f02d4a64 2572 if (set) // Blank out the values in the member variable
254a2129 2573 ClearMemberVar((UWORD)colNo,false); // Must call with false here, or infinite recursion will happen
e9ed92a2 2574
0907ea9c 2575 setCbValueForColumn(colNo);
e9ed92a2 2576
68379eaf 2577 return true;
f02d4a64 2578 }
89894079 2579 else
68379eaf 2580 return false;
a2115c88 2581
4fdae997 2582} // wxDbTable::SetColNull()
a2115c88 2583
67e9aaa3 2584
f6bcfd97
BP
2585/********** wxDbTable::GetNewCursor() **********/
2586HSTMT *wxDbTable::GetNewCursor(bool setCursor, bool bindColumns)
a2115c88 2587{
89894079 2588 HSTMT *newHSTMT = new HSTMT;
4fdae997 2589 wxASSERT(newHSTMT);
89894079
VZ
2590 if (!newHSTMT)
2591 return(0);
2592
2593 if (SQLAllocStmt(hdbc, newHSTMT) != SQL_SUCCESS)
2594 {
2595 pDb->DispAllErrors(henv, hdbc);
2596 delete newHSTMT;
2597 return(0);
2598 }
2599
2600 if (SQLSetStmtOption(*newHSTMT, SQL_CURSOR_TYPE, cursorType) != SQL_SUCCESS)
2601 {
2602 pDb->DispAllErrors(henv, hdbc, *newHSTMT);
2603 delete newHSTMT;
2604 return(0);
2605 }
2606
2607 if (bindColumns)
2608 {
882fc8a9 2609 if (!bindCols(*newHSTMT))
89894079
VZ
2610 {
2611 delete newHSTMT;
2612 return(0);
2613 }
2614 }
2615
2616 if (setCursor)
2617 SetCursor(newHSTMT);
2618
2619 return(newHSTMT);
2620
f6bcfd97 2621} // wxDbTable::GetNewCursor()
67e9aaa3 2622
a2115c88 2623
f6bcfd97
BP
2624/********** wxDbTable::DeleteCursor() **********/
2625bool wxDbTable::DeleteCursor(HSTMT *hstmtDel)
a2115c88 2626{
68379eaf 2627 bool result = true;
a2115c88 2628
89894079
VZ
2629 if (!hstmtDel) // Cursor already deleted
2630 return(result);
a2115c88 2631
7d8c3dba
GT
2632/*
2633ODBC 3.0 says to use this form
2634 if (SQLFreeHandle(*hstmtDel, SQL_DROP) != SQL_SUCCESS)
da38429d 2635
7d8c3dba 2636*/
89894079
VZ
2637 if (SQLFreeStmt(*hstmtDel, SQL_DROP) != SQL_SUCCESS)
2638 {
2639 pDb->DispAllErrors(henv, hdbc);
68379eaf 2640 result = false;
89894079 2641 }
a2115c88 2642
89894079 2643 delete hstmtDel;
a2115c88 2644
89894079 2645 return(result);
a2115c88 2646
f6bcfd97 2647} // wxDbTable::DeleteCursor()
a2115c88 2648
882fc8a9
GT
2649//////////////////////////////////////////////////////////////
2650// wxDbGrid support functions
2651//////////////////////////////////////////////////////////////
2652
2653void wxDbTable::SetRowMode(const rowmode_t rowmode)
2654{
2655 if (!m_hstmtGridQuery)
2656 {
68379eaf 2657 m_hstmtGridQuery = GetNewCursor(false,false);
882fc8a9
GT
2658 if (!bindCols(*m_hstmtGridQuery))
2659 return;
2660 }
2661
2662 m_rowmode = rowmode;
2663 switch (m_rowmode)
2664 {
2665 case WX_ROW_MODE_QUERY:
2666 SetCursor(m_hstmtGridQuery);
2667 break;
2668 case WX_ROW_MODE_INDIVIDUAL:
2669 SetCursor(hstmtDefault);
2670 break;
2671 default:
e7c9692f 2672 wxASSERT(0);
882fc8a9
GT
2673 }
2674} // wxDbTable::SetRowMode()
2675
2676
1dee6b39 2677wxVariant wxDbTable::GetCol(const int colNo) const
882fc8a9
GT
2678{
2679 wxVariant val;
254a2129 2680 if ((colNo < noCols) && (!IsColNull((UWORD)colNo)))
882fc8a9 2681 {
1dee6b39 2682 switch (colDefs[colNo].SqlCtype)
882fc8a9
GT
2683 {
2684 case SQL_CHAR:
2685 case SQL_VARCHAR:
1dee6b39 2686 val = (wxChar *)(colDefs[colNo].PtrDataObj);
882fc8a9
GT
2687 break;
2688 case SQL_C_LONG:
2689 case SQL_C_SLONG:
1dee6b39 2690 val = *(long *)(colDefs[colNo].PtrDataObj);
882fc8a9
GT
2691 break;
2692 case SQL_C_SHORT:
2693 case SQL_C_SSHORT:
1dee6b39 2694 val = (long int )(*(short *)(colDefs[colNo].PtrDataObj));
882fc8a9
GT
2695 break;
2696 case SQL_C_ULONG:
1dee6b39 2697 val = (long)(*(unsigned long *)(colDefs[colNo].PtrDataObj));
882fc8a9
GT
2698 break;
2699 case SQL_C_TINYINT:
8a39593e 2700 val = (long)(*(wxChar *)(colDefs[colNo].PtrDataObj));
882fc8a9
GT
2701 break;
2702 case SQL_C_UTINYINT:
8a39593e 2703 val = (long)(*(wxChar *)(colDefs[colNo].PtrDataObj));
882fc8a9
GT
2704 break;
2705 case SQL_C_USHORT:
1dee6b39 2706 val = (long)(*(UWORD *)(colDefs[colNo].PtrDataObj));
882fc8a9
GT
2707 break;
2708 case SQL_C_DATE:
1dee6b39 2709 val = (DATE_STRUCT *)(colDefs[colNo].PtrDataObj);
882fc8a9
GT
2710 break;
2711 case SQL_C_TIME:
1dee6b39 2712 val = (TIME_STRUCT *)(colDefs[colNo].PtrDataObj);
882fc8a9
GT
2713 break;
2714 case SQL_C_TIMESTAMP:
1dee6b39 2715 val = (TIMESTAMP_STRUCT *)(colDefs[colNo].PtrDataObj);
882fc8a9
GT
2716 break;
2717 case SQL_C_DOUBLE:
1dee6b39 2718 val = *(double *)(colDefs[colNo].PtrDataObj);
882fc8a9
GT
2719 break;
2720 default:
2721 assert(0);
2722 }
2723 }
2724 return val;
2725} // wxDbTable::GetCol()
2726
2727
1dee6b39 2728void wxDbTable::SetCol(const int colNo, const wxVariant val)
882fc8a9
GT
2729{
2730 //FIXME: Add proper wxDateTime support to wxVariant..
2731 wxDateTime dateval;
2732
254a2129 2733 SetColNull((UWORD)colNo, val.IsNull());
882fc8a9
GT
2734
2735 if (!val.IsNull())
2736 {
1dee6b39
GT
2737 if ((colDefs[colNo].SqlCtype == SQL_C_DATE)
2738 || (colDefs[colNo].SqlCtype == SQL_C_TIME)
2739 || (colDefs[colNo].SqlCtype == SQL_C_TIMESTAMP))
882fc8a9
GT
2740 {
2741 //Returns null if invalid!
2742 if (!dateval.ParseDate(val.GetString()))
254a2129 2743 SetColNull((UWORD)colNo, true);
da38429d 2744 }
882fc8a9 2745
1dee6b39 2746 switch (colDefs[colNo].SqlCtype)
882fc8a9
GT
2747 {
2748 case SQL_CHAR:
2749 case SQL_VARCHAR:
8a39593e 2750 csstrncpyt((wxChar *)(colDefs[colNo].PtrDataObj),
da38429d 2751 val.GetString().c_str(),
e4e45573 2752 colDefs[colNo].SzDataObj-1); //TODO: glt ??? * sizeof(wxChar) ???
882fc8a9
GT
2753 break;
2754 case SQL_C_LONG:
2755 case SQL_C_SLONG:
1dee6b39 2756 *(long *)(colDefs[colNo].PtrDataObj) = val;
882fc8a9
GT
2757 break;
2758 case SQL_C_SHORT:
2759 case SQL_C_SSHORT:
254a2129 2760 *(short *)(colDefs[colNo].PtrDataObj) = (short)val.GetLong();
882fc8a9
GT
2761 break;
2762 case SQL_C_ULONG:
1dee6b39 2763 *(unsigned long *)(colDefs[colNo].PtrDataObj) = val.GetLong();
882fc8a9
GT
2764 break;
2765 case SQL_C_TINYINT:
8a39593e 2766 *(wxChar *)(colDefs[colNo].PtrDataObj) = val.GetChar();
882fc8a9
GT
2767 break;
2768 case SQL_C_UTINYINT:
8a39593e 2769 *(wxChar *)(colDefs[colNo].PtrDataObj) = val.GetChar();
882fc8a9
GT
2770 break;
2771 case SQL_C_USHORT:
254a2129 2772 *(unsigned short *)(colDefs[colNo].PtrDataObj) = (unsigned short)val.GetLong();
882fc8a9
GT
2773 break;
2774 //FIXME: Add proper wxDateTime support to wxVariant..
2775 case SQL_C_DATE:
2776 {
2777 DATE_STRUCT *dataptr =
1dee6b39 2778 (DATE_STRUCT *)colDefs[colNo].PtrDataObj;
da38429d 2779
39d350d6
WS
2780 dataptr->year = (SWORD)dateval.GetYear();
2781 dataptr->month = (UWORD)(dateval.GetMonth()+1);
2782 dataptr->day = (UWORD)dateval.GetDay();
882fc8a9
GT
2783 }
2784 break;
2785 case SQL_C_TIME:
2786 {
2787 TIME_STRUCT *dataptr =
1dee6b39 2788 (TIME_STRUCT *)colDefs[colNo].PtrDataObj;
da38429d 2789
882fc8a9
GT
2790 dataptr->hour = dateval.GetHour();
2791 dataptr->minute = dateval.GetMinute();
2792 dataptr->second = dateval.GetSecond();
2793 }
2794 break;
2795 case SQL_C_TIMESTAMP:
2796 {
2797 TIMESTAMP_STRUCT *dataptr =
1dee6b39 2798 (TIMESTAMP_STRUCT *)colDefs[colNo].PtrDataObj;
39d350d6
WS
2799 dataptr->year = (SWORD)dateval.GetYear();
2800 dataptr->month = (UWORD)(dateval.GetMonth()+1);
2801 dataptr->day = (UWORD)dateval.GetDay();
da38429d 2802
882fc8a9
GT
2803 dataptr->hour = dateval.GetHour();
2804 dataptr->minute = dateval.GetMinute();
2805 dataptr->second = dateval.GetSecond();
2806 }
2807 break;
2808 case SQL_C_DOUBLE:
1dee6b39 2809 *(double *)(colDefs[colNo].PtrDataObj) = val;
882fc8a9
GT
2810 break;
2811 default:
2812 assert(0);
2813 } // switch
2814 } // if (!val.IsNull())
2815} // wxDbTable::SetCol()
2816
2817
2818GenericKey wxDbTable::GetKey()
2819{
2820 void *blk;
1dee6b39 2821 wxChar *blkptr;
da38429d 2822
882fc8a9 2823 blk = malloc(m_keysize);
1dee6b39 2824 blkptr = (wxChar *) blk;
da38429d 2825
882fc8a9
GT
2826 int i;
2827 for (i=0; i < noCols; i++)
2828 {
2829 if (colDefs[i].KeyField)
2830 {
2831 memcpy(blkptr,colDefs[i].PtrDataObj, colDefs[i].SzDataObj);
2832 blkptr += colDefs[i].SzDataObj;
2833 }
2834 }
2835
2836 GenericKey k = GenericKey(blk, m_keysize);
2837 free(blk);
2838
2839 return k;
2840} // wxDbTable::GetKey()
2841
2842
2843void wxDbTable::SetKey(const GenericKey& k)
2844{
1dee6b39
GT
2845 void *blk;
2846 wxChar *blkptr;
da38429d 2847
882fc8a9 2848 blk = k.GetBlk();
1dee6b39 2849 blkptr = (wxChar *)blk;
882fc8a9
GT
2850
2851 int i;
2852 for (i=0; i < noCols; i++)
2853 {
2854 if (colDefs[i].KeyField)
2855 {
254a2129 2856 SetColNull((UWORD)i, false);
882fc8a9
GT
2857 memcpy(colDefs[i].PtrDataObj, blkptr, colDefs[i].SzDataObj);
2858 blkptr += colDefs[i].SzDataObj;
2859 }
2860 }
2861} // wxDbTable::SetKey()
2862
2863
a2115c88 2864#endif // wxUSE_ODBC
1fc5dd6f 2865