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