1 ///////////////////////////////////////////////////////////////////////////////
3 // Purpose: Implementation of the wxDbTable class.
5 // Modified by: George Tasker
10 // Copyright: (c) 1996 Remstar International, Inc.
11 // Licence: wxWindows licence
12 ///////////////////////////////////////////////////////////////////////////////
19 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
20 #pragma implementation "dbtable.h"
23 #include "wx/wxprec.h"
29 #ifdef DBDEBUG_CONSOLE
35 #include "wx/ioswrap.h"
39 #include "wx/string.h"
40 #include "wx/object.h"
45 #include "wx/filefn.h"
53 #include "wx/dbtable.h"
56 // The HPUX preprocessor lines below were commented out on 8/20/97
57 // because macros.h currently redefines DEBUG and is unneeded.
59 // # include <macros.h>
62 # include <sys/minmax.h>
66 ULONG lastTableID
= 0;
74 void csstrncpyt(wxChar
*target
, const wxChar
*source
, int n
)
76 while ( (*target
++ = *source
++) != '\0' && --n
)
84 /********** wxDbColDef::wxDbColDef() Constructor **********/
85 wxDbColDef::wxDbColDef()
91 bool wxDbColDef::Initialize()
94 DbDataType
= DB_DATA_TYPE_INTEGER
;
95 SqlCtype
= SQL_C_LONG
;
100 InsertAllowed
= false;
106 } // wxDbColDef::Initialize()
109 /********** wxDbTable::wxDbTable() Constructor **********/
110 wxDbTable::wxDbTable(wxDb
*pwxDb
, const wxString
&tblName
, const UWORD numColumns
,
111 const wxString
&qryTblName
, bool qryOnly
, const wxString
&tblPath
)
113 if (!initialize(pwxDb
, tblName
, numColumns
, qryTblName
, qryOnly
, tblPath
))
115 } // wxDbTable::wxDbTable()
118 /***** DEPRECATED: use wxDbTable::wxDbTable() format above *****/
119 #if WXWIN_COMPATIBILITY_2_4
120 wxDbTable::wxDbTable(wxDb
*pwxDb
, const wxString
&tblName
, const UWORD numColumns
,
121 const wxChar
*qryTblName
, bool qryOnly
, const wxString
&tblPath
)
123 wxString tempQryTblName
;
124 tempQryTblName
= qryTblName
;
125 if (!initialize(pwxDb
, tblName
, numColumns
, tempQryTblName
, qryOnly
, tblPath
))
127 } // wxDbTable::wxDbTable()
128 #endif // WXWIN_COMPATIBILITY_2_4
131 /********** wxDbTable::~wxDbTable() **********/
132 wxDbTable::~wxDbTable()
135 } // wxDbTable::~wxDbTable()
138 bool wxDbTable::initialize(wxDb
*pwxDb
, const wxString
&tblName
, const UWORD numColumns
,
139 const wxString
&qryTblName
, bool qryOnly
, const wxString
&tblPath
)
141 // Initializing member variables
142 pDb
= pwxDb
; // Pointer to the wxDb object
146 m_hstmtGridQuery
= 0;
147 hstmtDefault
= 0; // Initialized below
148 hstmtCount
= 0; // Initialized first time it is needed
155 noCols
= numColumns
; // Number of cols in the table
156 where
.Empty(); // Where clause
157 orderBy
.Empty(); // Order By clause
158 from
.Empty(); // From clause
159 selectForUpdate
= false; // SELECT ... FOR UPDATE; Indicates whether to include the FOR UPDATE phrase
164 queryTableName
.Empty();
166 wxASSERT(tblName
.Length());
172 tableName
= tblName
; // Table Name
173 if (tblPath
.Length())
174 tablePath
= tblPath
; // Table Path - used for dBase files
178 if (qryTblName
.Length()) // Name of the table/view to query
179 queryTableName
= qryTblName
;
181 queryTableName
= tblName
;
183 pDb
->incrementTableCount();
186 tableID
= ++lastTableID
;
187 s
.Printf(wxT("wxDbTable constructor (%-20s) tableID:[%6lu] pDb:[%p]"), tblName
.c_str(), tableID
, pDb
);
190 wxTablesInUse
*tableInUse
;
191 tableInUse
= new wxTablesInUse();
192 tableInUse
->tableName
= tblName
;
193 tableInUse
->tableID
= tableID
;
194 tableInUse
->pDb
= pDb
;
195 TablesInUse
.Append(tableInUse
);
200 // Grab the HENV and HDBC from the wxDb object
201 henv
= pDb
->GetHENV();
202 hdbc
= pDb
->GetHDBC();
204 // Allocate space for column definitions
206 colDefs
= new wxDbColDef
[noCols
]; // Points to the first column definition
208 // Allocate statement handles for the table
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
);
221 // Allocate a separate statement handle for internal use
222 if (SQLAllocStmt(hdbc
, &hstmtInternal
) != SQL_SUCCESS
)
223 pDb
->DispAllErrors(henv
, hdbc
);
225 // Set the cursor type for the statement handles
226 cursorType
= SQL_CURSOR_STATIC
;
228 if (SQLSetStmtOption(hstmtInternal
, SQL_CURSOR_TYPE
, cursorType
) != SQL_SUCCESS
)
230 // Check to see if cursor type is supported
231 pDb
->GetNextError(henv
, hdbc
, hstmtInternal
);
232 if (! wxStrcmp(pDb
->sqlState
, wxT("01S02"))) // Option Value Changed
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
)
238 pDb
->DispAllErrors(henv
, hdbc
, hstmtInternal
);
239 #ifdef DBDEBUG_CONSOLE
240 cout
<< wxT("Static cursor changed to: ");
243 case SQL_CURSOR_FORWARD_ONLY
:
244 cout
<< wxT("Forward Only");
246 case SQL_CURSOR_STATIC
:
247 cout
<< wxT("Static");
249 case SQL_CURSOR_KEYSET_DRIVEN
:
250 cout
<< wxT("Keyset Driven");
252 case SQL_CURSOR_DYNAMIC
:
253 cout
<< wxT("Dynamic");
256 cout
<< endl
<< endl
;
259 if (pDb
->FwdOnlyCursors() && cursorType
!= SQL_CURSOR_FORWARD_ONLY
)
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
)
265 // Should never happen
266 pDb
->GetNextError(henv
, hdbc
, hstmtInternal
);
273 pDb
->DispNextError();
274 pDb
->DispAllErrors(henv
, hdbc
, hstmtInternal
);
277 #ifdef DBDEBUG_CONSOLE
279 cout
<< wxT("Cursor Type set to STATIC") << endl
<< endl
;
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
);
295 // Make the default cursor the active cursor
296 hstmtDefault
= GetNewCursor(false,false);
297 wxASSERT(hstmtDefault
);
298 hstmt
= *hstmtDefault
;
302 } // wxDbTable::initialize()
305 void wxDbTable::cleanup()
310 s
.Printf(wxT("wxDbTable destructor (%-20s) tableID:[%6lu] pDb:[%p]"), tableName
.c_str(), tableID
, pDb
);
319 wxList::compatibility_iterator pNode
;
320 pNode
= TablesInUse
.GetFirst();
321 while (pNode
&& !found
)
323 if (((wxTablesInUse
*)pNode
->GetData())->tableID
== tableID
)
326 delete (wxTablesInUse
*)pNode
->GetData();
327 TablesInUse
.Erase(pNode
);
330 pNode
= pNode
->GetNext();
335 msg
.Printf(wxT("Unable to find the tableID in the linked\nlist of tables in use.\n\n%s"),s
.c_str());
336 wxLogDebug (msg
,wxT("NOTICE..."));
341 // Decrement the wxDb table count
343 pDb
->decrementTableCount();
345 // Delete memory allocated for column definitions
349 // Free statement handles
355 ODBC 3.0 says to use this form
356 if (SQLFreeHandle(*hstmtDel, SQL_DROP) != SQL_SUCCESS)
358 if (SQLFreeStmt(hstmtInsert
, SQL_DROP
) != SQL_SUCCESS
)
359 pDb
->DispAllErrors(henv
, hdbc
);
365 ODBC 3.0 says to use this form
366 if (SQLFreeHandle(*hstmtDel, SQL_DROP) != SQL_SUCCESS)
368 if (SQLFreeStmt(hstmtDelete
, SQL_DROP
) != SQL_SUCCESS
)
369 pDb
->DispAllErrors(henv
, hdbc
);
375 ODBC 3.0 says to use this form
376 if (SQLFreeHandle(*hstmtDel, SQL_DROP) != SQL_SUCCESS)
378 if (SQLFreeStmt(hstmtUpdate
, SQL_DROP
) != SQL_SUCCESS
)
379 pDb
->DispAllErrors(henv
, hdbc
);
385 if (SQLFreeStmt(hstmtInternal
, SQL_DROP
) != SQL_SUCCESS
)
386 pDb
->DispAllErrors(henv
, hdbc
);
389 // Delete dynamically allocated cursors
391 DeleteCursor(hstmtDefault
);
394 DeleteCursor(hstmtCount
);
396 if (m_hstmtGridQuery
)
397 DeleteCursor(m_hstmtGridQuery
);
399 } // wxDbTable::cleanup()
402 /***************************** PRIVATE FUNCTIONS *****************************/
405 void wxDbTable::setCbValueForColumn(int columnIndex
)
407 switch(colDefs
[columnIndex
].DbDataType
)
409 case DB_DATA_TYPE_VARCHAR
:
410 if (colDefs
[columnIndex
].Null
)
411 colDefs
[columnIndex
].CbValue
= SQL_NULL_DATA
;
413 colDefs
[columnIndex
].CbValue
= SQL_NTS
;
415 case DB_DATA_TYPE_INTEGER
:
416 if (colDefs
[columnIndex
].Null
)
417 colDefs
[columnIndex
].CbValue
= SQL_NULL_DATA
;
419 colDefs
[columnIndex
].CbValue
= 0;
421 case DB_DATA_TYPE_FLOAT
:
422 if (colDefs
[columnIndex
].Null
)
423 colDefs
[columnIndex
].CbValue
= SQL_NULL_DATA
;
425 colDefs
[columnIndex
].CbValue
= 0;
427 case DB_DATA_TYPE_DATE
:
428 if (colDefs
[columnIndex
].Null
)
429 colDefs
[columnIndex
].CbValue
= SQL_NULL_DATA
;
431 colDefs
[columnIndex
].CbValue
= 0;
433 case DB_DATA_TYPE_BLOB
:
434 if (colDefs
[columnIndex
].Null
)
435 colDefs
[columnIndex
].CbValue
= SQL_NULL_DATA
;
437 if (colDefs
[columnIndex
].SqlCtype
== SQL_C_WXCHAR
)
438 colDefs
[columnIndex
].CbValue
= SQL_NTS
;
440 colDefs
[columnIndex
].CbValue
= SQL_LEN_DATA_AT_EXEC(colDefs
[columnIndex
].SzDataObj
);
445 /********** wxDbTable::bindParams() **********/
446 bool wxDbTable::bindParams(bool forUpdate
)
448 wxASSERT(!queryOnly
);
453 SDWORD precision
= 0;
456 // Bind each column of the table that should be bound
457 // to a parameter marker
461 for (i
=0, colNo
=1; i
< noCols
; i
++)
465 if (!colDefs
[i
].Updateable
)
470 if (!colDefs
[i
].InsertAllowed
)
474 switch(colDefs
[i
].DbDataType
)
476 case DB_DATA_TYPE_VARCHAR
:
477 fSqlType
= pDb
->GetTypeInfVarchar().FsqlType
;
478 precision
= colDefs
[i
].SzDataObj
;
481 case DB_DATA_TYPE_INTEGER
:
482 fSqlType
= pDb
->GetTypeInfInteger().FsqlType
;
483 precision
= pDb
->GetTypeInfInteger().Precision
;
486 case DB_DATA_TYPE_FLOAT
:
487 fSqlType
= pDb
->GetTypeInfFloat().FsqlType
;
488 precision
= pDb
->GetTypeInfFloat().Precision
;
489 scale
= pDb
->GetTypeInfFloat().MaximumScale
;
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.
494 // scale = (short) precision;
496 case DB_DATA_TYPE_DATE
:
497 fSqlType
= pDb
->GetTypeInfDate().FsqlType
;
498 precision
= pDb
->GetTypeInfDate().Precision
;
501 case DB_DATA_TYPE_BLOB
:
502 fSqlType
= pDb
->GetTypeInfBlob().FsqlType
;
503 precision
= colDefs
[i
].SzDataObj
;
508 setCbValueForColumn(i
);
512 if (SQLBindParameter(hstmtUpdate
, colNo
++, SQL_PARAM_INPUT
, colDefs
[i
].SqlCtype
,
513 fSqlType
, precision
, scale
, (UCHAR
*) colDefs
[i
].PtrDataObj
,
514 precision
+1, &colDefs
[i
].CbValue
) != SQL_SUCCESS
)
516 return(pDb
->DispAllErrors(henv
, hdbc
, hstmtUpdate
));
521 if (SQLBindParameter(hstmtInsert
, colNo
++, SQL_PARAM_INPUT
, colDefs
[i
].SqlCtype
,
522 fSqlType
, precision
, scale
, (UCHAR
*) colDefs
[i
].PtrDataObj
,
523 precision
+1, &colDefs
[i
].CbValue
) != SQL_SUCCESS
)
525 return(pDb
->DispAllErrors(henv
, hdbc
, hstmtInsert
));
530 // Completed successfully
533 } // wxDbTable::bindParams()
536 /********** wxDbTable::bindInsertParams() **********/
537 bool wxDbTable::bindInsertParams(void)
539 return bindParams(false);
540 } // wxDbTable::bindInsertParams()
543 /********** wxDbTable::bindUpdateParams() **********/
544 bool wxDbTable::bindUpdateParams(void)
546 return bindParams(true);
547 } // wxDbTable::bindUpdateParams()
550 /********** wxDbTable::bindCols() **********/
551 bool wxDbTable::bindCols(HSTMT cursor
)
555 // Bind each column of the table to a memory address for fetching data
557 for (i
= 0; i
< noCols
; i
++)
559 cb
= colDefs
[i
].CbValue
;
560 if (SQLBindCol(cursor
, (UWORD
)(i
+1), colDefs
[i
].SqlCtype
, (UCHAR
*) colDefs
[i
].PtrDataObj
,
561 colDefs
[i
].SzDataObj
, &cb
) != SQL_SUCCESS
)
562 return (pDb
->DispAllErrors(henv
, hdbc
, cursor
));
565 // Completed successfully
568 } // wxDbTable::bindCols()
571 /********** wxDbTable::getRec() **********/
572 bool wxDbTable::getRec(UWORD fetchType
)
576 if (!pDb
->FwdOnlyCursors())
578 // Fetch the NEXT, PREV, FIRST or LAST record, depending on fetchType
582 retcode
= SQLExtendedFetch(hstmt
, fetchType
, 0, &cRowsFetched
, &rowStatus
);
583 if (retcode
!= SQL_SUCCESS
&& retcode
!= SQL_SUCCESS_WITH_INFO
)
585 if (retcode
== SQL_NO_DATA_FOUND
)
588 return(pDb
->DispAllErrors(henv
, hdbc
, hstmt
));
592 // Set the Null member variable to indicate the Null state
593 // of each column just read in.
595 for (i
= 0; i
< noCols
; i
++)
596 colDefs
[i
].Null
= (colDefs
[i
].CbValue
== SQL_NULL_DATA
);
601 // Fetch the next record from the record set
602 retcode
= SQLFetch(hstmt
);
603 if (retcode
!= SQL_SUCCESS
&& retcode
!= SQL_SUCCESS_WITH_INFO
)
605 if (retcode
== SQL_NO_DATA_FOUND
)
608 return(pDb
->DispAllErrors(henv
, hdbc
, hstmt
));
612 // Set the Null member variable to indicate the Null state
613 // of each column just read in.
615 for (i
= 0; i
< noCols
; i
++)
616 colDefs
[i
].Null
= (colDefs
[i
].CbValue
== SQL_NULL_DATA
);
620 // Completed successfully
623 } // wxDbTable::getRec()
626 /********** wxDbTable::execDelete() **********/
627 bool wxDbTable::execDelete(const wxString
&pSqlStmt
)
631 // Execute the DELETE statement
632 retcode
= SQLExecDirect(hstmtDelete
, (SQLTCHAR FAR
*) pSqlStmt
.c_str(), SQL_NTS
);
634 if (retcode
== SQL_SUCCESS
||
635 retcode
== SQL_NO_DATA_FOUND
||
636 retcode
== SQL_SUCCESS_WITH_INFO
)
638 // Record deleted successfully
642 // Problem deleting record
643 return(pDb
->DispAllErrors(henv
, hdbc
, hstmtDelete
));
645 } // wxDbTable::execDelete()
648 /********** wxDbTable::execUpdate() **********/
649 bool wxDbTable::execUpdate(const wxString
&pSqlStmt
)
653 // Execute the UPDATE statement
654 retcode
= SQLExecDirect(hstmtUpdate
, (SQLTCHAR FAR
*) pSqlStmt
.c_str(), SQL_NTS
);
656 if (retcode
== SQL_SUCCESS
||
657 retcode
== SQL_NO_DATA_FOUND
||
658 retcode
== SQL_SUCCESS_WITH_INFO
)
660 // Record updated successfully
663 else if (retcode
== SQL_NEED_DATA
)
666 retcode
= SQLParamData(hstmtUpdate
, &pParmID
);
667 while (retcode
== SQL_NEED_DATA
)
669 // Find the parameter
671 for (i
=0; i
< noCols
; i
++)
673 if (colDefs
[i
].PtrDataObj
== pParmID
)
675 // We found it. Store the parameter.
676 retcode
= SQLPutData(hstmtUpdate
, pParmID
, colDefs
[i
].SzDataObj
);
677 if (retcode
!= SQL_SUCCESS
)
679 pDb
->DispNextError();
680 return pDb
->DispAllErrors(henv
, hdbc
, hstmtUpdate
);
685 retcode
= SQLParamData(hstmtUpdate
, &pParmID
);
687 if (retcode
== SQL_SUCCESS
||
688 retcode
== SQL_NO_DATA_FOUND
||
689 retcode
== SQL_SUCCESS_WITH_INFO
)
691 // Record updated successfully
696 // Problem updating record
697 return(pDb
->DispAllErrors(henv
, hdbc
, hstmtUpdate
));
699 } // wxDbTable::execUpdate()
702 /********** wxDbTable::query() **********/
703 bool wxDbTable::query(int queryType
, bool forUpdate
, bool distinct
, const wxString
&pSqlStmt
)
708 // The user may wish to select for update, but the DBMS may not be capable
709 selectForUpdate
= CanSelectForUpdate();
711 selectForUpdate
= false;
713 // Set the SQL SELECT string
714 if (queryType
!= DB_SELECT_STATEMENT
) // A select statement was not passed in,
715 { // so generate a select statement.
716 BuildSelectStmt(sqlStmt
, queryType
, distinct
);
717 pDb
->WriteSqlLog(sqlStmt
);
720 // Make sure the cursor is closed first
721 if (!CloseCursor(hstmt
))
724 // Execute the SQL SELECT statement
726 retcode
= SQLExecDirect(hstmt
, (SQLTCHAR FAR
*) (queryType
== DB_SELECT_STATEMENT
? pSqlStmt
.c_str() : sqlStmt
.c_str()), SQL_NTS
);
727 if (retcode
!= SQL_SUCCESS
&& retcode
!= SQL_SUCCESS_WITH_INFO
)
728 return(pDb
->DispAllErrors(henv
, hdbc
, hstmt
));
730 // Completed successfully
733 } // wxDbTable::query()
736 /***************************** PUBLIC FUNCTIONS *****************************/
739 /********** wxDbTable::Open() **********/
740 bool wxDbTable::Open(bool checkPrivileges
, bool checkTableExists
)
750 // Calculate the maximum size of the concatenated
751 // keys for use with wxDbGrid
753 for (i
=0; i
< noCols
; i
++)
755 if (colDefs
[i
].KeyField
)
758 m_keysize
+= colDefs
[i
].SzDataObj
;
763 // Verify that the table exists in the database
764 if (checkTableExists
&& !pDb
->TableExists(tableName
, pDb
->GetUsername(), tablePath
))
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");
772 else if (checkPrivileges
)
774 // Verify the user has rights to access the table.
775 // Shortcut boolean evaluation to optimize out call to
778 // Unfortunately this optimization doesn't seem to be
780 if (// *(pDb->dbInf.accessibleTables) == 'N' &&
781 !pDb
->TablePrivileges(tableName
,wxT("SELECT"), pDb
->GetUsername(), pDb
->GetUsername(), tablePath
))
782 s
= wxT("Connecting user does not have sufficient privileges to access this table.\n");
789 if (!tablePath
.IsEmpty())
790 p
.Printf(wxT("Error opening '%s/%s'.\n"),tablePath
.c_str(),tableName
.c_str());
792 p
.Printf(wxT("Error opening '%s'.\n"), tableName
.c_str());
795 pDb
->LogError(p
.GetData());
800 // Bind the member variables for field exchange between
801 // the wxDbTable object and the ODBC record.
804 if (!bindInsertParams()) // Inserts
807 if (!bindUpdateParams()) // Updates
811 if (!bindCols(*hstmtDefault
)) // Selects
814 if (!bindCols(hstmtInternal
)) // Internal use only
818 * Do NOT bind the hstmtCount cursor!!!
821 // Build an insert statement using parameter markers
822 if (!queryOnly
&& noCols
> 0)
824 bool needComma
= false;
825 sqlStmt
.Printf(wxT("INSERT INTO %s ("),
826 pDb
->SQLTableName(tableName
.c_str()).c_str());
827 for (i
= 0; i
< noCols
; i
++)
829 if (! colDefs
[i
].InsertAllowed
)
833 sqlStmt
+= pDb
->SQLColumnName(colDefs
[i
].ColName
);
834 // sqlStmt += colDefs[i].ColName;
838 sqlStmt
+= wxT(") VALUES (");
840 int insertableCount
= 0;
842 for (i
= 0; i
< noCols
; i
++)
844 if (! colDefs
[i
].InsertAllowed
)
854 // Prepare the insert statement for execution
857 if (SQLPrepare(hstmtInsert
, (SQLTCHAR FAR
*) sqlStmt
.c_str(), SQL_NTS
) != SQL_SUCCESS
)
858 return(pDb
->DispAllErrors(henv
, hdbc
, hstmtInsert
));
864 // Completed successfully
867 } // wxDbTable::Open()
870 /********** wxDbTable::Query() **********/
871 bool wxDbTable::Query(bool forUpdate
, bool distinct
)
874 return(query(DB_SELECT_WHERE
, forUpdate
, distinct
));
876 } // wxDbTable::Query()
879 /********** wxDbTable::QueryBySqlStmt() **********/
880 bool wxDbTable::QueryBySqlStmt(const wxString
&pSqlStmt
)
882 pDb
->WriteSqlLog(pSqlStmt
);
884 return(query(DB_SELECT_STATEMENT
, false, false, pSqlStmt
));
886 } // wxDbTable::QueryBySqlStmt()
889 /********** wxDbTable::QueryMatching() **********/
890 bool wxDbTable::QueryMatching(bool forUpdate
, bool distinct
)
893 return(query(DB_SELECT_MATCHING
, forUpdate
, distinct
));
895 } // wxDbTable::QueryMatching()
898 /********** wxDbTable::QueryOnKeyFields() **********/
899 bool wxDbTable::QueryOnKeyFields(bool forUpdate
, bool distinct
)
902 return(query(DB_SELECT_KEYFIELDS
, forUpdate
, distinct
));
904 } // wxDbTable::QueryOnKeyFields()
907 /********** wxDbTable::GetPrev() **********/
908 bool wxDbTable::GetPrev(void)
910 if (pDb
->FwdOnlyCursors())
912 wxFAIL_MSG(wxT("GetPrev()::Backward scrolling cursors are not enabled for this instance of wxDbTable"));
916 return(getRec(SQL_FETCH_PRIOR
));
918 } // wxDbTable::GetPrev()
921 /********** wxDbTable::operator-- **********/
922 bool wxDbTable::operator--(int)
924 if (pDb
->FwdOnlyCursors())
926 wxFAIL_MSG(wxT("operator--:Backward scrolling cursors are not enabled for this instance of wxDbTable"));
930 return(getRec(SQL_FETCH_PRIOR
));
932 } // wxDbTable::operator--
935 /********** wxDbTable::GetFirst() **********/
936 bool wxDbTable::GetFirst(void)
938 if (pDb
->FwdOnlyCursors())
940 wxFAIL_MSG(wxT("GetFirst():Backward scrolling cursors are not enabled for this instance of wxDbTable"));
944 return(getRec(SQL_FETCH_FIRST
));
946 } // wxDbTable::GetFirst()
949 /********** wxDbTable::GetLast() **********/
950 bool wxDbTable::GetLast(void)
952 if (pDb
->FwdOnlyCursors())
954 wxFAIL_MSG(wxT("GetLast()::Backward scrolling cursors are not enabled for this instance of wxDbTable"));
958 return(getRec(SQL_FETCH_LAST
));
960 } // wxDbTable::GetLast()
963 /********** wxDbTable::BuildDeleteStmt() **********/
964 void wxDbTable::BuildDeleteStmt(wxString
&pSqlStmt
, int typeOfDel
, const wxString
&pWhereClause
)
966 wxASSERT(!queryOnly
);
970 wxString whereClause
;
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))
978 pSqlStmt
.Printf(wxT("DELETE FROM %s"),
979 pDb
->SQLTableName(tableName
.c_str()).c_str());
983 pSqlStmt
.Printf(wxT("DELETE FROM %s WHERE "),
984 pDb
->SQLTableName(tableName
.c_str()).c_str());
986 // Append the WHERE clause to the SQL DELETE statement
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'
996 wxChar rowid
[wxDB_ROWID_LEN
+1];
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.
1001 if (SQLGetData(hstmt
, (UWORD
)(noCols
+1), SQL_C_WXCHAR
, (UCHAR
*) rowid
, sizeof(rowid
), &cb
) == SQL_SUCCESS
)
1003 pSqlStmt
+= wxT("ROWID = '");
1005 pSqlStmt
+= wxT("'");
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
;
1015 pSqlStmt
+= pWhereClause
;
1017 case DB_DEL_MATCHING
:
1018 BuildWhereClause(whereClause
, DB_WHERE_MATCHING
);
1019 pSqlStmt
+= whereClause
;
1023 } // BuildDeleteStmt()
1026 /***** DEPRECATED: use wxDbTable::BuildDeleteStmt(wxString &....) form *****/
1027 void wxDbTable::BuildDeleteStmt(wxChar
*pSqlStmt
, int typeOfDel
, const wxString
&pWhereClause
)
1029 wxString tempSqlStmt
;
1030 BuildDeleteStmt(tempSqlStmt
, typeOfDel
, pWhereClause
);
1031 wxStrcpy(pSqlStmt
, tempSqlStmt
);
1032 } // wxDbTable::BuildDeleteStmt()
1035 /********** wxDbTable::BuildSelectStmt() **********/
1036 void wxDbTable::BuildSelectStmt(wxString
&pSqlStmt
, int typeOfSelect
, bool distinct
)
1038 wxString whereClause
;
1039 whereClause
.Empty();
1041 // Build a select statement to query the database
1042 pSqlStmt
= wxT("SELECT ");
1044 // SELECT DISTINCT values only?
1046 pSqlStmt
+= wxT("DISTINCT ");
1048 // Was a FROM clause specified to join tables to the base table?
1049 // Available for ::Query() only!!!
1050 bool appendFromClause
= false;
1051 #if wxODBC_BACKWARD_COMPATABILITY
1052 if (typeOfSelect
== DB_SELECT_WHERE
&& from
&& wxStrlen(from
))
1053 appendFromClause
= true;
1055 if (typeOfSelect
== DB_SELECT_WHERE
&& from
.Length())
1056 appendFromClause
= true;
1059 // Add the column list
1062 for (i
= 0; i
< noCols
; i
++)
1064 tStr
= colDefs
[i
].ColName
;
1065 // If joining tables, the base table column names must be qualified to avoid ambiguity
1066 if ((appendFromClause
|| pDb
->Dbms() == dbmsACCESS
) && tStr
.Find(wxT('.')) == wxNOT_FOUND
)
1068 pSqlStmt
+= pDb
->SQLTableName(queryTableName
.c_str());
1069 pSqlStmt
+= wxT(".");
1071 pSqlStmt
+= pDb
->SQLColumnName(colDefs
[i
].ColName
);
1073 pSqlStmt
+= wxT(",");
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())
1080 // If joining tables, the base table column names must be qualified to avoid ambiguity
1081 if (appendFromClause
|| pDb
->Dbms() == dbmsACCESS
)
1083 pSqlStmt
+= wxT(",");
1084 pSqlStmt
+= pDb
->SQLTableName(queryTableName
);
1085 // pSqlStmt += queryTableName;
1086 pSqlStmt
+= wxT(".ROWID");
1089 pSqlStmt
+= wxT(",ROWID");
1092 // Append the FROM tablename portion
1093 pSqlStmt
+= wxT(" FROM ");
1094 pSqlStmt
+= pDb
->SQLTableName(queryTableName
);
1095 // pSqlStmt += queryTableName;
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
))
1103 pSqlStmt
+= wxT(" HOLDLOCK");
1105 if (appendFromClause
)
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
)
1112 case DB_SELECT_WHERE
:
1113 #if wxODBC_BACKWARD_COMPATABILITY
1114 if (where
&& wxStrlen(where
)) // May not want a where clause!!!
1116 if (where
.Length()) // May not want a where clause!!!
1119 pSqlStmt
+= wxT(" WHERE ");
1123 case DB_SELECT_KEYFIELDS
:
1124 BuildWhereClause(whereClause
, DB_WHERE_KEYFIELDS
);
1125 if (whereClause
.Length())
1127 pSqlStmt
+= wxT(" WHERE ");
1128 pSqlStmt
+= whereClause
;
1131 case DB_SELECT_MATCHING
:
1132 BuildWhereClause(whereClause
, DB_WHERE_MATCHING
);
1133 if (whereClause
.Length())
1135 pSqlStmt
+= wxT(" WHERE ");
1136 pSqlStmt
+= whereClause
;
1141 // Append the ORDER BY clause
1142 #if wxODBC_BACKWARD_COMPATABILITY
1143 if (orderBy
&& wxStrlen(orderBy
))
1145 if (orderBy
.Length())
1148 pSqlStmt
+= wxT(" ORDER BY ");
1149 pSqlStmt
+= orderBy
;
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())
1156 pSqlStmt
+= wxT(" FOR UPDATE");
1158 } // wxDbTable::BuildSelectStmt()
1161 /***** DEPRECATED: use wxDbTable::BuildSelectStmt(wxString &....) form *****/
1162 void wxDbTable::BuildSelectStmt(wxChar
*pSqlStmt
, int typeOfSelect
, bool distinct
)
1164 wxString tempSqlStmt
;
1165 BuildSelectStmt(tempSqlStmt
, typeOfSelect
, distinct
);
1166 wxStrcpy(pSqlStmt
, tempSqlStmt
);
1167 } // wxDbTable::BuildSelectStmt()
1170 /********** wxDbTable::BuildUpdateStmt() **********/
1171 void wxDbTable::BuildUpdateStmt(wxString
&pSqlStmt
, int typeOfUpd
, const wxString
&pWhereClause
)
1173 wxASSERT(!queryOnly
);
1177 wxString whereClause
;
1178 whereClause
.Empty();
1180 bool firstColumn
= true;
1182 pSqlStmt
.Printf(wxT("UPDATE %s SET "),
1183 pDb
->SQLTableName(tableName
.c_str()).c_str());
1185 // Append a list of columns to be updated
1187 for (i
= 0; i
< noCols
; i
++)
1189 // Only append Updateable columns
1190 if (colDefs
[i
].Updateable
)
1193 pSqlStmt
+= wxT(",");
1195 firstColumn
= false;
1197 pSqlStmt
+= pDb
->SQLColumnName(colDefs
[i
].ColName
);
1198 // pSqlStmt += colDefs[i].ColName;
1199 pSqlStmt
+= wxT(" = ?");
1203 // Append the WHERE clause to the SQL UPDATE statement
1204 pSqlStmt
+= wxT(" WHERE ");
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())
1214 wxChar rowid
[wxDB_ROWID_LEN
+1];
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.
1219 if (SQLGetData(hstmt
, (UWORD
)(noCols
+1), SQL_C_WXCHAR
, (UCHAR
*) rowid
, sizeof(rowid
), &cb
) == SQL_SUCCESS
)
1221 pSqlStmt
+= wxT("ROWID = '");
1223 pSqlStmt
+= wxT("'");
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
;
1233 pSqlStmt
+= pWhereClause
;
1236 } // BuildUpdateStmt()
1239 /***** DEPRECATED: use wxDbTable::BuildUpdateStmt(wxString &....) form *****/
1240 void wxDbTable::BuildUpdateStmt(wxChar
*pSqlStmt
, int typeOfUpd
, const wxString
&pWhereClause
)
1242 wxString tempSqlStmt
;
1243 BuildUpdateStmt(tempSqlStmt
, typeOfUpd
, pWhereClause
);
1244 wxStrcpy(pSqlStmt
, tempSqlStmt
);
1245 } // BuildUpdateStmt()
1248 /********** wxDbTable::BuildWhereClause() **********/
1249 void wxDbTable::BuildWhereClause(wxString
&pWhereClause
, int typeOfWhere
,
1250 const wxString
&qualTableName
, bool useLikeComparison
)
1252 * Note: BuildWhereClause() currently ignores timestamp columns.
1253 * They are not included as part of the where clause.
1256 bool moreThanOneColumn
= false;
1259 // Loop through the columns building a where clause as you go
1261 for (colNo
= 0; colNo
< noCols
; colNo
++)
1263 // Determine if this column should be included in the WHERE clause
1264 if ((typeOfWhere
== DB_WHERE_KEYFIELDS
&& colDefs
[colNo
].KeyField
) ||
1265 (typeOfWhere
== DB_WHERE_MATCHING
&& (!IsColNull((UWORD
)colNo
))))
1267 // Skip over timestamp columns
1268 if (colDefs
[colNo
].SqlCtype
== SQL_C_TIMESTAMP
)
1270 // If there is more than 1 column, join them with the keyword "AND"
1271 if (moreThanOneColumn
)
1272 pWhereClause
+= wxT(" AND ");
1274 moreThanOneColumn
= true;
1276 // Concatenate where phrase for the column
1277 wxString tStr
= colDefs
[colNo
].ColName
;
1279 if (qualTableName
.Length() && tStr
.Find(wxT('.')) == wxNOT_FOUND
)
1281 pWhereClause
+= pDb
->SQLTableName(qualTableName
);
1282 pWhereClause
+= wxT(".");
1284 pWhereClause
+= pDb
->SQLColumnName(colDefs
[colNo
].ColName
);
1286 if (useLikeComparison
&& (colDefs
[colNo
].SqlCtype
== SQL_C_WXCHAR
))
1287 pWhereClause
+= wxT(" LIKE ");
1289 pWhereClause
+= wxT(" = ");
1291 switch(colDefs
[colNo
].SqlCtype
)
1297 //case SQL_C_WXCHAR: SQL_C_WXCHAR is covered by either SQL_C_CHAR or SQL_C_WCHAR
1298 colValue
.Printf(wxT("'%s'"), (UCHAR FAR
*) colDefs
[colNo
].PtrDataObj
);
1302 colValue
.Printf(wxT("%hi"), *((SWORD
*) colDefs
[colNo
].PtrDataObj
));
1305 colValue
.Printf(wxT("%hu"), *((UWORD
*) colDefs
[colNo
].PtrDataObj
));
1309 colValue
.Printf(wxT("%li"), *((SDWORD
*) colDefs
[colNo
].PtrDataObj
));
1312 colValue
.Printf(wxT("%lu"), *((UDWORD
*) colDefs
[colNo
].PtrDataObj
));
1315 colValue
.Printf(wxT("%.6f"), *((SFLOAT
*) colDefs
[colNo
].PtrDataObj
));
1318 colValue
.Printf(wxT("%.6f"), *((SDOUBLE
*) colDefs
[colNo
].PtrDataObj
));
1323 strMsg
.Printf(wxT("wxDbTable::bindParams(): Unknown column type for colDefs %d colName %s"),
1324 colNo
,colDefs
[colNo
].ColName
);
1325 wxFAIL_MSG(strMsg
.c_str());
1329 pWhereClause
+= colValue
;
1332 } // wxDbTable::BuildWhereClause()
1335 /***** DEPRECATED: use wxDbTable::BuildWhereClause(wxString &....) form *****/
1336 void wxDbTable::BuildWhereClause(wxChar
*pWhereClause
, int typeOfWhere
,
1337 const wxString
&qualTableName
, bool useLikeComparison
)
1339 wxString tempSqlStmt
;
1340 BuildWhereClause(tempSqlStmt
, typeOfWhere
, qualTableName
, useLikeComparison
);
1341 wxStrcpy(pWhereClause
, tempSqlStmt
);
1342 } // wxDbTable::BuildWhereClause()
1345 /********** wxDbTable::GetRowNum() **********/
1346 UWORD
wxDbTable::GetRowNum(void)
1350 if (SQLGetStmtOption(hstmt
, SQL_ROW_NUMBER
, (UCHAR
*) &rowNum
) != SQL_SUCCESS
)
1352 pDb
->DispAllErrors(henv
, hdbc
, hstmt
);
1356 // Completed successfully
1357 return((UWORD
) rowNum
);
1359 } // wxDbTable::GetRowNum()
1362 /********** wxDbTable::CloseCursor() **********/
1363 bool wxDbTable::CloseCursor(HSTMT cursor
)
1365 if (SQLFreeStmt(cursor
, SQL_CLOSE
) != SQL_SUCCESS
)
1366 return(pDb
->DispAllErrors(henv
, hdbc
, cursor
));
1368 // Completed successfully
1371 } // wxDbTable::CloseCursor()
1374 /********** wxDbTable::CreateTable() **********/
1375 bool wxDbTable::CreateTable(bool attemptDrop
)
1383 #ifdef DBDEBUG_CONSOLE
1384 cout
<< wxT("Creating Table ") << tableName
<< wxT("...") << endl
;
1388 if (attemptDrop
&& !DropTable())
1392 #ifdef DBDEBUG_CONSOLE
1393 for (i
= 0; i
< noCols
; i
++)
1395 // Exclude derived columns since they are NOT part of the base table
1396 if (colDefs
[i
].DerivedCol
)
1398 cout
<< i
+ 1 << wxT(": ") << colDefs
[i
].ColName
<< wxT("; ");
1399 switch(colDefs
[i
].DbDataType
)
1401 case DB_DATA_TYPE_VARCHAR
:
1402 cout
<< pDb
->GetTypeInfVarchar().TypeName
<< wxT("(") << (int)(colDefs
[i
].SzDataObj
/ sizeof(wxChar
)) << wxT(")");
1404 case DB_DATA_TYPE_INTEGER
:
1405 cout
<< pDb
->GetTypeInfInteger().TypeName
;
1407 case DB_DATA_TYPE_FLOAT
:
1408 cout
<< pDb
->GetTypeInfFloat().TypeName
;
1410 case DB_DATA_TYPE_DATE
:
1411 cout
<< pDb
->GetTypeInfDate().TypeName
;
1413 case DB_DATA_TYPE_BLOB
:
1414 cout
<< pDb
->GetTypeInfBlob().TypeName
;
1421 // Build a CREATE TABLE string from the colDefs structure.
1422 bool needComma
= false;
1424 sqlStmt
.Printf(wxT("CREATE TABLE %s ("),
1425 pDb
->SQLTableName(tableName
.c_str()).c_str());
1427 for (i
= 0; i
< noCols
; i
++)
1429 // Exclude derived columns since they are NOT part of the base table
1430 if (colDefs
[i
].DerivedCol
)
1434 sqlStmt
+= wxT(",");
1436 sqlStmt
+= pDb
->SQLColumnName(colDefs
[i
].ColName
);
1437 // sqlStmt += colDefs[i].ColName;
1438 sqlStmt
+= wxT(" ");
1440 switch(colDefs
[i
].DbDataType
)
1442 case DB_DATA_TYPE_VARCHAR
:
1443 sqlStmt
+= pDb
->GetTypeInfVarchar().TypeName
;
1445 case DB_DATA_TYPE_INTEGER
:
1446 sqlStmt
+= pDb
->GetTypeInfInteger().TypeName
;
1448 case DB_DATA_TYPE_FLOAT
:
1449 sqlStmt
+= pDb
->GetTypeInfFloat().TypeName
;
1451 case DB_DATA_TYPE_DATE
:
1452 sqlStmt
+= pDb
->GetTypeInfDate().TypeName
;
1454 case DB_DATA_TYPE_BLOB
:
1455 sqlStmt
+= pDb
->GetTypeInfBlob().TypeName
;
1458 // For varchars, append the size of the string
1459 if (colDefs
[i
].DbDataType
== DB_DATA_TYPE_VARCHAR
&&
1460 (pDb
->Dbms() != dbmsMY_SQL
|| pDb
->GetTypeInfVarchar().TypeName
!= _T("text")))// ||
1461 // colDefs[i].DbDataType == DB_DATA_TYPE_BLOB)
1464 s
.Printf(wxT("(%d)"), (int)(colDefs
[i
].SzDataObj
/ sizeof(wxChar
)));
1468 if (pDb
->Dbms() == dbmsDB2
||
1469 pDb
->Dbms() == dbmsMY_SQL
||
1470 pDb
->Dbms() == dbmsSYBASE_ASE
||
1471 pDb
->Dbms() == dbmsINTERBASE
||
1472 pDb
->Dbms() == dbmsMS_SQL_SERVER
)
1474 if (colDefs
[i
].KeyField
)
1476 sqlStmt
+= wxT(" NOT NULL");
1482 // If there is a primary key defined, include it in the create statement
1483 for (i
= j
= 0; i
< noCols
; i
++)
1485 if (colDefs
[i
].KeyField
)
1491 if ( j
&& (pDb
->Dbms() != dbmsDBASE
)
1492 && (pDb
->Dbms() != dbmsXBASE_SEQUITER
) ) // Found a keyfield
1494 switch (pDb
->Dbms())
1498 case dbmsSYBASE_ASA
:
1499 case dbmsSYBASE_ASE
:
1502 // MySQL goes out on this one. We also declare the relevant key NON NULL above
1503 sqlStmt
+= wxT(",PRIMARY KEY (");
1508 sqlStmt
+= wxT(",CONSTRAINT ");
1509 // DB2 is limited to 18 characters for index names
1510 if (pDb
->Dbms() == dbmsDB2
)
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."));
1513 sqlStmt
+= pDb
->SQLTableName(tableName
.substr(0, 13).c_str());
1514 // sqlStmt += tableName.substr(0, 13);
1517 sqlStmt
+= pDb
->SQLTableName(tableName
.c_str());
1518 // sqlStmt += tableName;
1520 sqlStmt
+= wxT("_PIDX PRIMARY KEY (");
1525 // List column name(s) of column(s) comprising the primary key
1526 for (i
= j
= 0; i
< noCols
; i
++)
1528 if (colDefs
[i
].KeyField
)
1530 if (j
++) // Multi part key, comma separate names
1531 sqlStmt
+= wxT(",");
1532 sqlStmt
+= pDb
->SQLColumnName(colDefs
[i
].ColName
);
1534 if (pDb
->Dbms() == dbmsMY_SQL
&&
1535 colDefs
[i
].DbDataType
== DB_DATA_TYPE_VARCHAR
)
1538 s
.Printf(wxT("(%d)"), (int)(colDefs
[i
].SzDataObj
/ sizeof(wxChar
)));
1543 sqlStmt
+= wxT(")");
1545 if (pDb
->Dbms() == dbmsINFORMIX
||
1546 pDb
->Dbms() == dbmsSYBASE_ASA
||
1547 pDb
->Dbms() == dbmsSYBASE_ASE
)
1549 sqlStmt
+= wxT(" CONSTRAINT ");
1550 sqlStmt
+= pDb
->SQLTableName(tableName
);
1551 // sqlStmt += tableName;
1552 sqlStmt
+= wxT("_PIDX");
1555 // Append the closing parentheses for the create table statement
1556 sqlStmt
+= wxT(")");
1558 pDb
->WriteSqlLog(sqlStmt
);
1560 #ifdef DBDEBUG_CONSOLE
1561 cout
<< endl
<< sqlStmt
.c_str() << endl
;
1564 // Execute the CREATE TABLE statement
1565 RETCODE retcode
= SQLExecDirect(hstmt
, (SQLTCHAR FAR
*) sqlStmt
.c_str(), SQL_NTS
);
1566 if (retcode
!= SQL_SUCCESS
&& retcode
!= SQL_SUCCESS_WITH_INFO
)
1568 pDb
->DispAllErrors(henv
, hdbc
, hstmt
);
1569 pDb
->RollbackTrans();
1574 // Commit the transaction and close the cursor
1575 if (!pDb
->CommitTrans())
1577 if (!CloseCursor(hstmt
))
1580 // Database table created successfully
1583 } // wxDbTable::CreateTable()
1586 /********** wxDbTable::DropTable() **********/
1587 bool wxDbTable::DropTable()
1589 // NOTE: This function returns true if the Table does not exist, but
1590 // only for identified databases. Code will need to be added
1591 // below for any other databases when those databases are defined
1592 // to handle this situation consistently
1596 sqlStmt
.Printf(wxT("DROP TABLE %s"),
1597 pDb
->SQLTableName(tableName
.c_str()).c_str());
1599 pDb
->WriteSqlLog(sqlStmt
);
1601 #ifdef DBDEBUG_CONSOLE
1602 cout
<< endl
<< sqlStmt
.c_str() << endl
;
1605 RETCODE retcode
= SQLExecDirect(hstmt
, (SQLTCHAR FAR
*) sqlStmt
.c_str(), SQL_NTS
);
1606 if (retcode
!= SQL_SUCCESS
)
1608 // Check for "Base table not found" error and ignore
1609 pDb
->GetNextError(henv
, hdbc
, hstmt
);
1610 if (wxStrcmp(pDb
->sqlState
, wxT("S0002")) /*&&
1611 wxStrcmp(pDb->sqlState, wxT("S1000"))*/) // "Base table not found"
1613 // Check for product specific error codes
1614 if (!((pDb
->Dbms() == dbmsSYBASE_ASA
&& !wxStrcmp(pDb
->sqlState
,wxT("42000"))) || // 5.x (and lower?)
1615 (pDb
->Dbms() == dbmsSYBASE_ASE
&& !wxStrcmp(pDb
->sqlState
,wxT("37000"))) ||
1616 (pDb
->Dbms() == dbmsPERVASIVE_SQL
&& !wxStrcmp(pDb
->sqlState
,wxT("S1000"))) || // Returns an S1000 then an S0002
1617 (pDb
->Dbms() == dbmsPOSTGRES
&& !wxStrcmp(pDb
->sqlState
,wxT("08S01")))))
1619 pDb
->DispNextError();
1620 pDb
->DispAllErrors(henv
, hdbc
, hstmt
);
1621 pDb
->RollbackTrans();
1622 // CloseCursor(hstmt);
1628 // Commit the transaction and close the cursor
1629 if (! pDb
->CommitTrans())
1631 if (! CloseCursor(hstmt
))
1635 } // wxDbTable::DropTable()
1638 /********** wxDbTable::CreateIndex() **********/
1639 bool wxDbTable::CreateIndex(const wxString
&idxName
, bool unique
, UWORD noIdxCols
,
1640 wxDbIdxDef
*pIdxDefs
, bool attemptDrop
)
1644 // Drop the index first
1645 if (attemptDrop
&& !DropIndex(idxName
))
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).
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
)
1661 for (i
= 0; i
< noIdxCols
&& ok
; i
++)
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
1669 while (!found
&& (j
< this->noCols
))
1671 if (wxStrcmp(colDefs
[j
].ColName
,pIdxDefs
[i
].ColName
) == 0)
1679 ok
= pDb
->ModifyColumn(tableName
, pIdxDefs
[i
].ColName
,
1680 colDefs
[j
].DbDataType
, (int)(colDefs
[j
].SzDataObj
/ sizeof(wxChar
)),
1686 // retcode is not used
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
;
1702 pDb
->RollbackTrans();
1707 // Build a CREATE INDEX statement
1708 sqlStmt
= wxT("CREATE ");
1710 sqlStmt
+= wxT("UNIQUE ");
1712 sqlStmt
+= wxT("INDEX ");
1713 sqlStmt
+= pDb
->SQLTableName(idxName
);
1714 sqlStmt
+= wxT(" ON ");
1716 sqlStmt
+= pDb
->SQLTableName(tableName
);
1717 // sqlStmt += tableName;
1718 sqlStmt
+= wxT(" (");
1720 // Append list of columns making up index
1722 for (i
= 0; i
< noIdxCols
; i
++)
1724 sqlStmt
+= pDb
->SQLColumnName(pIdxDefs
[i
].ColName
);
1725 // sqlStmt += pIdxDefs[i].ColName;
1727 // MySQL requires a key length on VARCHAR keys
1728 if ( pDb
->Dbms() == dbmsMY_SQL
)
1730 // Find the details on this column
1732 for ( j
= 0; j
< noCols
; ++j
)
1734 if ( wxStrcmp( pIdxDefs
[i
].ColName
, colDefs
[j
].ColName
) == 0 )
1739 if ( colDefs
[j
].DbDataType
== DB_DATA_TYPE_VARCHAR
)
1742 s
.Printf(wxT("(%d)"), (int)(colDefs
[i
].SzDataObj
/ sizeof(wxChar
)));
1747 // Postgres and SQL Server 7 do not support the ASC/DESC keywords for index columns
1748 if (!((pDb
->Dbms() == dbmsMS_SQL_SERVER
) && (wxStrncmp(pDb
->dbInf
.dbmsVer
,_T("07"),2)==0)) &&
1749 !(pDb
->Dbms() == dbmsPOSTGRES
))
1751 if (pIdxDefs
[i
].Ascending
)
1752 sqlStmt
+= wxT(" ASC");
1754 sqlStmt
+= wxT(" DESC");
1757 wxASSERT_MSG(pIdxDefs
[i
].Ascending
, _T("Datasource does not support DESCending index columns"));
1759 if ((i
+ 1) < noIdxCols
)
1760 sqlStmt
+= wxT(",");
1763 // Append closing parentheses
1764 sqlStmt
+= wxT(")");
1766 pDb
->WriteSqlLog(sqlStmt
);
1768 #ifdef DBDEBUG_CONSOLE
1769 cout
<< endl
<< sqlStmt
.c_str() << endl
<< endl
;
1772 // Execute the CREATE INDEX statement
1773 if (SQLExecDirect(hstmt
, (SQLTCHAR FAR
*) sqlStmt
.c_str(), SQL_NTS
) != SQL_SUCCESS
)
1775 pDb
->DispAllErrors(henv
, hdbc
, hstmt
);
1776 pDb
->RollbackTrans();
1781 // Commit the transaction and close the cursor
1782 if (! pDb
->CommitTrans())
1784 if (! CloseCursor(hstmt
))
1787 // Index Created Successfully
1790 } // wxDbTable::CreateIndex()
1793 /********** wxDbTable::DropIndex() **********/
1794 bool wxDbTable::DropIndex(const wxString
&idxName
)
1796 // NOTE: This function returns true if the Index does not exist, but
1797 // only for identified databases. Code will need to be added
1798 // below for any other databases when those databases are defined
1799 // to handle this situation consistently
1803 if (pDb
->Dbms() == dbmsACCESS
|| pDb
->Dbms() == dbmsMY_SQL
||
1804 pDb
->Dbms() == dbmsDBASE
/*|| Paradox needs this syntax too when we add support*/)
1805 sqlStmt
.Printf(wxT("DROP INDEX %s ON %s"),
1806 pDb
->SQLTableName(idxName
.c_str()).c_str(),
1807 pDb
->SQLTableName(tableName
.c_str()).c_str());
1808 else if ((pDb
->Dbms() == dbmsMS_SQL_SERVER
) ||
1809 (pDb
->Dbms() == dbmsSYBASE_ASE
) ||
1810 (pDb
->Dbms() == dbmsXBASE_SEQUITER
))
1811 sqlStmt
.Printf(wxT("DROP INDEX %s.%s"),
1812 pDb
->SQLTableName(tableName
.c_str()).c_str(),
1813 pDb
->SQLTableName(idxName
.c_str()).c_str());
1815 sqlStmt
.Printf(wxT("DROP INDEX %s"),
1816 pDb
->SQLTableName(idxName
.c_str()).c_str());
1818 pDb
->WriteSqlLog(sqlStmt
);
1820 #ifdef DBDEBUG_CONSOLE
1821 cout
<< endl
<< sqlStmt
.c_str() << endl
;
1824 if (SQLExecDirect(hstmt
, (SQLTCHAR FAR
*) sqlStmt
.c_str(), SQL_NTS
) != SQL_SUCCESS
)
1826 // Check for "Index not found" error and ignore
1827 pDb
->GetNextError(henv
, hdbc
, hstmt
);
1828 if (wxStrcmp(pDb
->sqlState
,wxT("S0012"))) // "Index not found"
1830 // Check for product specific error codes
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"))) ||
1834 (pDb
->Dbms() == dbmsINTERBASE
&& !wxStrcmp(pDb
->sqlState
,wxT("S1000"))) ||
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")))
1840 pDb
->DispNextError();
1841 pDb
->DispAllErrors(henv
, hdbc
, hstmt
);
1842 pDb
->RollbackTrans();
1849 // Commit the transaction and close the cursor
1850 if (! pDb
->CommitTrans())
1852 if (! CloseCursor(hstmt
))
1856 } // wxDbTable::DropIndex()
1859 /********** wxDbTable::SetOrderByColNums() **********/
1860 bool wxDbTable::SetOrderByColNums(UWORD first
, ... )
1862 int colNo
= first
; // using 'int' to be able to look for wxDB_NO_MORE_COLUN_NUMBERS
1868 va_start(argptr
, first
); /* Initialize variable arguments. */
1869 while (!abort
&& (colNo
!= wxDB_NO_MORE_COLUMN_NUMBERS
))
1871 // Make sure the passed in column number
1872 // is within the valid range of columns
1874 // Valid columns are 0 thru noCols-1
1875 if (colNo
>= noCols
|| colNo
< 0)
1882 tempStr
+= wxT(",");
1884 tempStr
+= colDefs
[colNo
].ColName
;
1885 colNo
= va_arg (argptr
, int);
1887 va_end (argptr
); /* Reset variable arguments. */
1889 SetOrderByClause(tempStr
);
1892 } // wxDbTable::SetOrderByColNums()
1895 /********** wxDbTable::Insert() **********/
1896 int wxDbTable::Insert(void)
1898 wxASSERT(!queryOnly
);
1899 if (queryOnly
|| !insertable
)
1904 // Insert the record by executing the already prepared insert statement
1906 retcode
=SQLExecute(hstmtInsert
);
1907 if (retcode
!= SQL_SUCCESS
&& retcode
!= SQL_SUCCESS_WITH_INFO
&&
1908 retcode
!= SQL_NEED_DATA
)
1910 // Check to see if integrity constraint was violated
1911 pDb
->GetNextError(henv
, hdbc
, hstmtInsert
);
1912 if (! wxStrcmp(pDb
->sqlState
, wxT("23000"))) // Integrity constraint violated
1913 return(DB_ERR_INTEGRITY_CONSTRAINT_VIOL
);
1916 pDb
->DispNextError();
1917 pDb
->DispAllErrors(henv
, hdbc
, hstmtInsert
);
1921 if (retcode
== SQL_NEED_DATA
)
1924 retcode
= SQLParamData(hstmtInsert
, &pParmID
);
1925 while (retcode
== SQL_NEED_DATA
)
1927 // Find the parameter
1929 for (i
=0; i
< noCols
; i
++)
1931 if (colDefs
[i
].PtrDataObj
== pParmID
)
1933 // We found it. Store the parameter.
1934 retcode
= SQLPutData(hstmtInsert
, pParmID
, colDefs
[i
].SzDataObj
);
1935 if (retcode
!= SQL_SUCCESS
)
1937 pDb
->DispNextError();
1938 pDb
->DispAllErrors(henv
, hdbc
, hstmtInsert
);
1944 retcode
= SQLParamData(hstmtInsert
, &pParmID
);
1945 if (retcode
!= SQL_SUCCESS
&&
1946 retcode
!= SQL_SUCCESS_WITH_INFO
)
1948 // record was not inserted
1949 pDb
->DispNextError();
1950 pDb
->DispAllErrors(henv
, hdbc
, hstmtInsert
);
1956 // Record inserted into the datasource successfully
1959 } // wxDbTable::Insert()
1962 /********** wxDbTable::Update() **********/
1963 bool wxDbTable::Update(void)
1965 wxASSERT(!queryOnly
);
1971 // Build the SQL UPDATE statement
1972 BuildUpdateStmt(sqlStmt
, DB_UPD_KEYFIELDS
);
1974 pDb
->WriteSqlLog(sqlStmt
);
1976 #ifdef DBDEBUG_CONSOLE
1977 cout
<< endl
<< sqlStmt
.c_str() << endl
<< endl
;
1980 // Execute the SQL UPDATE statement
1981 return(execUpdate(sqlStmt
));
1983 } // wxDbTable::Update()
1986 /********** wxDbTable::Update(pSqlStmt) **********/
1987 bool wxDbTable::Update(const wxString
&pSqlStmt
)
1989 wxASSERT(!queryOnly
);
1993 pDb
->WriteSqlLog(pSqlStmt
);
1995 return(execUpdate(pSqlStmt
));
1997 } // wxDbTable::Update(pSqlStmt)
2000 /********** wxDbTable::UpdateWhere() **********/
2001 bool wxDbTable::UpdateWhere(const wxString
&pWhereClause
)
2003 wxASSERT(!queryOnly
);
2009 // Build the SQL UPDATE statement
2010 BuildUpdateStmt(sqlStmt
, DB_UPD_WHERE
, pWhereClause
);
2012 pDb
->WriteSqlLog(sqlStmt
);
2014 #ifdef DBDEBUG_CONSOLE
2015 cout
<< endl
<< sqlStmt
.c_str() << endl
<< endl
;
2018 // Execute the SQL UPDATE statement
2019 return(execUpdate(sqlStmt
));
2021 } // wxDbTable::UpdateWhere()
2024 /********** wxDbTable::Delete() **********/
2025 bool wxDbTable::Delete(void)
2027 wxASSERT(!queryOnly
);
2034 // Build the SQL DELETE statement
2035 BuildDeleteStmt(sqlStmt
, DB_DEL_KEYFIELDS
);
2037 pDb
->WriteSqlLog(sqlStmt
);
2039 // Execute the SQL DELETE statement
2040 return(execDelete(sqlStmt
));
2042 } // wxDbTable::Delete()
2045 /********** wxDbTable::DeleteWhere() **********/
2046 bool wxDbTable::DeleteWhere(const wxString
&pWhereClause
)
2048 wxASSERT(!queryOnly
);
2055 // Build the SQL DELETE statement
2056 BuildDeleteStmt(sqlStmt
, DB_DEL_WHERE
, pWhereClause
);
2058 pDb
->WriteSqlLog(sqlStmt
);
2060 // Execute the SQL DELETE statement
2061 return(execDelete(sqlStmt
));
2063 } // wxDbTable::DeleteWhere()
2066 /********** wxDbTable::DeleteMatching() **********/
2067 bool wxDbTable::DeleteMatching(void)
2069 wxASSERT(!queryOnly
);
2076 // Build the SQL DELETE statement
2077 BuildDeleteStmt(sqlStmt
, DB_DEL_MATCHING
);
2079 pDb
->WriteSqlLog(sqlStmt
);
2081 // Execute the SQL DELETE statement
2082 return(execDelete(sqlStmt
));
2084 } // wxDbTable::DeleteMatching()
2087 /********** wxDbTable::IsColNull() **********/
2088 bool wxDbTable::IsColNull(UWORD colNo
) const
2091 This logic is just not right. It would indicate true
2092 if a numeric field were set to a value of 0.
2094 switch(colDefs[colNo].SqlCtype)
2098 //case SQL_C_WXCHAR: SQL_C_WXCHAR is covered by either SQL_C_CHAR or SQL_C_WCHAR
2099 return(((UCHAR FAR *) colDefs[colNo].PtrDataObj)[0] == 0);
2101 return(( *((SWORD *) colDefs[colNo].PtrDataObj)) == 0);
2103 return(( *((UWORD*) colDefs[colNo].PtrDataObj)) == 0);
2105 return(( *((SDWORD *) colDefs[colNo].PtrDataObj)) == 0);
2107 return(( *((UDWORD *) colDefs[colNo].PtrDataObj)) == 0);
2109 return(( *((SFLOAT *) colDefs[colNo].PtrDataObj)) == 0);
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)
2123 return (colDefs
[colNo
].Null
);
2124 } // wxDbTable::IsColNull()
2127 /********** wxDbTable::CanSelectForUpdate() **********/
2128 bool wxDbTable::CanSelectForUpdate(void)
2133 if (pDb
->Dbms() == dbmsMY_SQL
)
2136 if ((pDb
->Dbms() == dbmsORACLE
) ||
2137 (pDb
->dbInf
.posStmts
& SQL_PS_SELECT_FOR_UPDATE
))
2142 } // wxDbTable::CanSelectForUpdate()
2145 /********** wxDbTable::CanUpdByROWID() **********/
2146 bool wxDbTable::CanUpdByROWID(void)
2149 * NOTE: Returning false for now until this can be debugged,
2150 * as the ROWID is not getting updated correctly
2154 if (pDb->Dbms() == dbmsORACLE)
2159 } // wxDbTable::CanUpdByROWID()
2162 /********** wxDbTable::IsCursorClosedOnCommit() **********/
2163 bool wxDbTable::IsCursorClosedOnCommit(void)
2165 if (pDb
->dbInf
.cursorCommitBehavior
== SQL_CB_PRESERVE
)
2170 } // wxDbTable::IsCursorClosedOnCommit()
2174 /********** wxDbTable::ClearMemberVar() **********/
2175 void wxDbTable::ClearMemberVar(UWORD colNo
, bool setToNull
)
2177 wxASSERT(colNo
< noCols
);
2179 switch(colDefs
[colNo
].SqlCtype
)
2185 //case SQL_C_WXCHAR: SQL_C_WXCHAR is covered by either SQL_C_CHAR or SQL_C_WCHAR
2186 ((UCHAR FAR
*) colDefs
[colNo
].PtrDataObj
)[0] = 0;
2189 *((SWORD
*) colDefs
[colNo
].PtrDataObj
) = 0;
2192 *((UWORD
*) colDefs
[colNo
].PtrDataObj
) = 0;
2196 *((SDWORD
*) colDefs
[colNo
].PtrDataObj
) = 0;
2199 *((UDWORD
*) colDefs
[colNo
].PtrDataObj
) = 0;
2202 *((SFLOAT
*) colDefs
[colNo
].PtrDataObj
) = 0.0f
;
2205 *((SDOUBLE
*) colDefs
[colNo
].PtrDataObj
) = 0.0f
;
2207 case SQL_C_TIMESTAMP
:
2208 TIMESTAMP_STRUCT
*pDt
;
2209 pDt
= (TIMESTAMP_STRUCT
*) colDefs
[colNo
].PtrDataObj
;
2222 } // wxDbTable::ClearMemberVar()
2225 /********** wxDbTable::ClearMemberVars() **********/
2226 void wxDbTable::ClearMemberVars(bool setToNull
)
2230 // Loop through the columns setting each member variable to zero
2231 for (i
=0; i
< noCols
; i
++)
2232 ClearMemberVar((UWORD
)i
,setToNull
);
2234 } // wxDbTable::ClearMemberVars()
2237 /********** wxDbTable::SetQueryTimeout() **********/
2238 bool wxDbTable::SetQueryTimeout(UDWORD nSeconds
)
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
));
2249 // Completed Successfully
2252 } // wxDbTable::SetQueryTimeout()
2255 /********** wxDbTable::SetColDefs() **********/
2256 void wxDbTable::SetColDefs(UWORD index
, const wxString
&fieldName
, int dataType
, void *pData
,
2257 SWORD cType
, int size
, bool keyField
, bool upd
,
2258 bool insAllow
, bool derivedCol
)
2260 wxASSERT_MSG( index
< noCols
,
2261 _T("Specified column index exceeds the maximum number of columns for this table.") );
2263 if (!colDefs
) // May happen if the database connection fails
2266 if (fieldName
.Length() > (unsigned int) DB_MAX_COLUMN_NAME_LEN
)
2268 wxStrncpy(colDefs
[index
].ColName
, fieldName
, DB_MAX_COLUMN_NAME_LEN
);
2269 colDefs
[index
].ColName
[DB_MAX_COLUMN_NAME_LEN
] = 0;
2273 tmpMsg
.Printf(_T("Column name '%s' is too long. Truncated to '%s'."),
2274 fieldName
.c_str(),colDefs
[index
].ColName
);
2276 #endif // __WXDEBUG__
2279 wxStrcpy(colDefs
[index
].ColName
, fieldName
);
2281 colDefs
[index
].DbDataType
= dataType
;
2282 colDefs
[index
].PtrDataObj
= pData
;
2283 colDefs
[index
].SqlCtype
= cType
;
2284 colDefs
[index
].SzDataObj
= size
; //TODO: glt ??? * sizeof(wxChar) ???
2285 colDefs
[index
].KeyField
= keyField
;
2286 colDefs
[index
].DerivedCol
= derivedCol
;
2287 // Derived columns by definition would NOT be "Insertable" or "Updateable"
2290 colDefs
[index
].Updateable
= false;
2291 colDefs
[index
].InsertAllowed
= false;
2295 colDefs
[index
].Updateable
= upd
;
2296 colDefs
[index
].InsertAllowed
= insAllow
;
2299 colDefs
[index
].Null
= false;
2301 } // wxDbTable::SetColDefs()
2304 /********** wxDbTable::SetColDefs() **********/
2305 wxDbColDataPtr
* wxDbTable::SetColDefs(wxDbColInf
*pColInfs
, UWORD numCols
)
2308 wxDbColDataPtr
*pColDataPtrs
= NULL
;
2314 pColDataPtrs
= new wxDbColDataPtr
[numCols
+1];
2316 for (index
= 0; index
< numCols
; index
++)
2318 // Process the fields
2319 switch (pColInfs
[index
].dbDataType
)
2321 case DB_DATA_TYPE_VARCHAR
:
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
;
2326 case DB_DATA_TYPE_INTEGER
:
2327 // Can be long or short
2328 if (pColInfs
[index
].bufferSize
== sizeof(long))
2330 pColDataPtrs
[index
].PtrDataObj
= new long;
2331 pColDataPtrs
[index
].SzDataObj
= sizeof(long);
2332 pColDataPtrs
[index
].SqlCtype
= SQL_C_SLONG
;
2336 pColDataPtrs
[index
].PtrDataObj
= new short;
2337 pColDataPtrs
[index
].SzDataObj
= sizeof(short);
2338 pColDataPtrs
[index
].SqlCtype
= SQL_C_SSHORT
;
2341 case DB_DATA_TYPE_FLOAT
:
2342 // Can be float or double
2343 if (pColInfs
[index
].bufferSize
== sizeof(float))
2345 pColDataPtrs
[index
].PtrDataObj
= new float;
2346 pColDataPtrs
[index
].SzDataObj
= sizeof(float);
2347 pColDataPtrs
[index
].SqlCtype
= SQL_C_FLOAT
;
2351 pColDataPtrs
[index
].PtrDataObj
= new double;
2352 pColDataPtrs
[index
].SzDataObj
= sizeof(double);
2353 pColDataPtrs
[index
].SqlCtype
= SQL_C_DOUBLE
;
2356 case DB_DATA_TYPE_DATE
:
2357 pColDataPtrs
[index
].PtrDataObj
= new TIMESTAMP_STRUCT
;
2358 pColDataPtrs
[index
].SzDataObj
= sizeof(TIMESTAMP_STRUCT
);
2359 pColDataPtrs
[index
].SqlCtype
= SQL_C_TIMESTAMP
;
2361 case DB_DATA_TYPE_BLOB
:
2362 wxFAIL_MSG(wxT("This form of ::SetColDefs() cannot be used with BLOB columns"));
2363 pColDataPtrs
[index
].PtrDataObj
= /*BLOB ADDITION NEEDED*/NULL
;
2364 pColDataPtrs
[index
].SzDataObj
= /*BLOB ADDITION NEEDED*/sizeof(void *);
2365 pColDataPtrs
[index
].SqlCtype
= SQL_VARBINARY
;
2368 if (pColDataPtrs
[index
].PtrDataObj
!= NULL
)
2369 SetColDefs (index
,pColInfs
[index
].colName
,pColInfs
[index
].dbDataType
, pColDataPtrs
[index
].PtrDataObj
, pColDataPtrs
[index
].SqlCtype
, pColDataPtrs
[index
].SzDataObj
);
2372 // Unable to build all the column definitions, as either one of
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
;
2383 return (pColDataPtrs
);
2385 } // wxDbTable::SetColDefs()
2388 /********** wxDbTable::SetCursor() **********/
2389 void wxDbTable::SetCursor(HSTMT
*hstmtActivate
)
2391 if (hstmtActivate
== wxDB_DEFAULT_CURSOR
)
2392 hstmt
= *hstmtDefault
;
2394 hstmt
= *hstmtActivate
;
2396 } // wxDbTable::SetCursor()
2399 /********** wxDbTable::Count(const wxString &) **********/
2400 ULONG
wxDbTable::Count(const wxString
&args
)
2406 // Build a "SELECT COUNT(*) FROM queryTableName [WHERE whereClause]" SQL Statement
2407 sqlStmt
= wxT("SELECT COUNT(");
2409 sqlStmt
+= wxT(") FROM ");
2410 sqlStmt
+= pDb
->SQLTableName(queryTableName
);
2411 // sqlStmt += queryTableName;
2412 #if wxODBC_BACKWARD_COMPATABILITY
2413 if (from
&& wxStrlen(from
))
2419 // Add the where clause if one is provided
2420 #if wxODBC_BACKWARD_COMPATABILITY
2421 if (where
&& wxStrlen(where
))
2426 sqlStmt
+= wxT(" WHERE ");
2430 pDb
->WriteSqlLog(sqlStmt
);
2432 // Initialize the Count cursor if it's not already initialized
2435 hstmtCount
= GetNewCursor(false,false);
2436 wxASSERT(hstmtCount
);
2441 // Execute the SQL statement
2442 if (SQLExecDirect(*hstmtCount
, (SQLTCHAR FAR
*) sqlStmt
.c_str(), SQL_NTS
) != SQL_SUCCESS
)
2444 pDb
->DispAllErrors(henv
, hdbc
, *hstmtCount
);
2449 if (SQLFetch(*hstmtCount
) != SQL_SUCCESS
)
2451 pDb
->DispAllErrors(henv
, hdbc
, *hstmtCount
);
2455 // Obtain the result
2456 if (SQLGetData(*hstmtCount
, (UWORD
)1, SQL_C_ULONG
, &count
, sizeof(count
), &cb
) != SQL_SUCCESS
)
2458 pDb
->DispAllErrors(henv
, hdbc
, *hstmtCount
);
2463 if (SQLFreeStmt(*hstmtCount
, SQL_CLOSE
) != SQL_SUCCESS
)
2464 pDb
->DispAllErrors(henv
, hdbc
, *hstmtCount
);
2466 // Return the record count
2469 } // wxDbTable::Count()
2472 /********** wxDbTable::Refresh() **********/
2473 bool wxDbTable::Refresh(void)
2477 // Switch to the internal cursor so any active cursors are not corrupted
2478 HSTMT currCursor
= GetCursor();
2479 hstmt
= hstmtInternal
;
2480 #if wxODBC_BACKWARD_COMPATABILITY
2481 // Save the where and order by clauses
2482 wxChar
*saveWhere
= where
;
2483 wxChar
*saveOrderBy
= orderBy
;
2485 wxString saveWhere
= where
;
2486 wxString saveOrderBy
= orderBy
;
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.
2490 wxString whereClause
;
2491 whereClause
.Empty();
2493 if (CanUpdByROWID())
2496 wxChar rowid
[wxDB_ROWID_LEN
+1];
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.
2501 if (SQLGetData(hstmt
, (UWORD
)(noCols
+1), SQL_C_WXCHAR
, (UCHAR
*) rowid
, sizeof(rowid
), &cb
) == SQL_SUCCESS
)
2503 whereClause
+= pDb
->SQLTableName(queryTableName
);
2504 // whereClause += queryTableName;
2505 whereClause
+= wxT(".ROWID = '");
2506 whereClause
+= rowid
;
2507 whereClause
+= wxT("'");
2511 // If unable to use the ROWID, build a where clause from the keyfields
2512 if (wxStrlen(whereClause
) == 0)
2513 BuildWhereClause(whereClause
, DB_WHERE_KEYFIELDS
, queryTableName
);
2515 // Requery the record
2516 where
= whereClause
;
2521 if (result
&& !GetNext())
2524 // Switch back to original cursor
2525 SetCursor(&currCursor
);
2527 // Free the internal cursor
2528 if (SQLFreeStmt(hstmtInternal
, SQL_CLOSE
) != SQL_SUCCESS
)
2529 pDb
->DispAllErrors(henv
, hdbc
, hstmtInternal
);
2531 // Restore the original where and order by clauses
2533 orderBy
= saveOrderBy
;
2537 } // wxDbTable::Refresh()
2540 /********** wxDbTable::SetColNull() **********/
2541 bool wxDbTable::SetColNull(UWORD colNo
, bool set
)
2545 colDefs
[colNo
].Null
= set
;
2546 if (set
) // Blank out the values in the member variable
2547 ClearMemberVar(colNo
, false); // Must call with false here, or infinite recursion will happen
2549 setCbValueForColumn(colNo
);
2556 } // wxDbTable::SetColNull()
2559 /********** wxDbTable::SetColNull() **********/
2560 bool wxDbTable::SetColNull(const wxString
&colName
, bool set
)
2563 for (colNo
= 0; colNo
< noCols
; colNo
++)
2565 if (!wxStricmp(colName
, colDefs
[colNo
].ColName
))
2571 colDefs
[colNo
].Null
= set
;
2572 if (set
) // Blank out the values in the member variable
2573 ClearMemberVar((UWORD
)colNo
,false); // Must call with false here, or infinite recursion will happen
2575 setCbValueForColumn(colNo
);
2582 } // wxDbTable::SetColNull()
2585 /********** wxDbTable::GetNewCursor() **********/
2586 HSTMT
*wxDbTable::GetNewCursor(bool setCursor
, bool bindColumns
)
2588 HSTMT
*newHSTMT
= new HSTMT
;
2593 if (SQLAllocStmt(hdbc
, newHSTMT
) != SQL_SUCCESS
)
2595 pDb
->DispAllErrors(henv
, hdbc
);
2600 if (SQLSetStmtOption(*newHSTMT
, SQL_CURSOR_TYPE
, cursorType
) != SQL_SUCCESS
)
2602 pDb
->DispAllErrors(henv
, hdbc
, *newHSTMT
);
2609 if (!bindCols(*newHSTMT
))
2617 SetCursor(newHSTMT
);
2621 } // wxDbTable::GetNewCursor()
2624 /********** wxDbTable::DeleteCursor() **********/
2625 bool wxDbTable::DeleteCursor(HSTMT
*hstmtDel
)
2629 if (!hstmtDel
) // Cursor already deleted
2633 ODBC 3.0 says to use this form
2634 if (SQLFreeHandle(*hstmtDel, SQL_DROP) != SQL_SUCCESS)
2637 if (SQLFreeStmt(*hstmtDel
, SQL_DROP
) != SQL_SUCCESS
)
2639 pDb
->DispAllErrors(henv
, hdbc
);
2647 } // wxDbTable::DeleteCursor()
2649 //////////////////////////////////////////////////////////////
2650 // wxDbGrid support functions
2651 //////////////////////////////////////////////////////////////
2653 void wxDbTable::SetRowMode(const rowmode_t rowmode
)
2655 if (!m_hstmtGridQuery
)
2657 m_hstmtGridQuery
= GetNewCursor(false,false);
2658 if (!bindCols(*m_hstmtGridQuery
))
2662 m_rowmode
= rowmode
;
2665 case WX_ROW_MODE_QUERY
:
2666 SetCursor(m_hstmtGridQuery
);
2668 case WX_ROW_MODE_INDIVIDUAL
:
2669 SetCursor(hstmtDefault
);
2674 } // wxDbTable::SetRowMode()
2677 wxVariant
wxDbTable::GetCol(const int colNo
) const
2680 if ((colNo
< noCols
) && (!IsColNull((UWORD
)colNo
)))
2682 switch (colDefs
[colNo
].SqlCtype
)
2686 val
= (wxChar
*)(colDefs
[colNo
].PtrDataObj
);
2690 val
= *(long *)(colDefs
[colNo
].PtrDataObj
);
2694 val
= (long int )(*(short *)(colDefs
[colNo
].PtrDataObj
));
2697 val
= (long)(*(unsigned long *)(colDefs
[colNo
].PtrDataObj
));
2700 val
= (long)(*(wxChar
*)(colDefs
[colNo
].PtrDataObj
));
2702 case SQL_C_UTINYINT
:
2703 val
= (long)(*(wxChar
*)(colDefs
[colNo
].PtrDataObj
));
2706 val
= (long)(*(UWORD
*)(colDefs
[colNo
].PtrDataObj
));
2709 val
= (DATE_STRUCT
*)(colDefs
[colNo
].PtrDataObj
);
2712 val
= (TIME_STRUCT
*)(colDefs
[colNo
].PtrDataObj
);
2714 case SQL_C_TIMESTAMP
:
2715 val
= (TIMESTAMP_STRUCT
*)(colDefs
[colNo
].PtrDataObj
);
2718 val
= *(double *)(colDefs
[colNo
].PtrDataObj
);
2725 } // wxDbTable::GetCol()
2728 void wxDbTable::SetCol(const int colNo
, const wxVariant val
)
2730 //FIXME: Add proper wxDateTime support to wxVariant..
2733 SetColNull((UWORD
)colNo
, val
.IsNull());
2737 if ((colDefs
[colNo
].SqlCtype
== SQL_C_DATE
)
2738 || (colDefs
[colNo
].SqlCtype
== SQL_C_TIME
)
2739 || (colDefs
[colNo
].SqlCtype
== SQL_C_TIMESTAMP
))
2741 //Returns null if invalid!
2742 if (!dateval
.ParseDate(val
.GetString()))
2743 SetColNull((UWORD
)colNo
, true);
2746 switch (colDefs
[colNo
].SqlCtype
)
2750 csstrncpyt((wxChar
*)(colDefs
[colNo
].PtrDataObj
),
2751 val
.GetString().c_str(),
2752 colDefs
[colNo
].SzDataObj
-1); //TODO: glt ??? * sizeof(wxChar) ???
2756 *(long *)(colDefs
[colNo
].PtrDataObj
) = val
;
2760 *(short *)(colDefs
[colNo
].PtrDataObj
) = (short)val
.GetLong();
2763 *(unsigned long *)(colDefs
[colNo
].PtrDataObj
) = val
.GetLong();
2766 *(wxChar
*)(colDefs
[colNo
].PtrDataObj
) = val
.GetChar();
2768 case SQL_C_UTINYINT
:
2769 *(wxChar
*)(colDefs
[colNo
].PtrDataObj
) = val
.GetChar();
2772 *(unsigned short *)(colDefs
[colNo
].PtrDataObj
) = (unsigned short)val
.GetLong();
2774 //FIXME: Add proper wxDateTime support to wxVariant..
2777 DATE_STRUCT
*dataptr
=
2778 (DATE_STRUCT
*)colDefs
[colNo
].PtrDataObj
;
2780 dataptr
->year
= (SWORD
)dateval
.GetYear();
2781 dataptr
->month
= (UWORD
)(dateval
.GetMonth()+1);
2782 dataptr
->day
= (UWORD
)dateval
.GetDay();
2787 TIME_STRUCT
*dataptr
=
2788 (TIME_STRUCT
*)colDefs
[colNo
].PtrDataObj
;
2790 dataptr
->hour
= dateval
.GetHour();
2791 dataptr
->minute
= dateval
.GetMinute();
2792 dataptr
->second
= dateval
.GetSecond();
2795 case SQL_C_TIMESTAMP
:
2797 TIMESTAMP_STRUCT
*dataptr
=
2798 (TIMESTAMP_STRUCT
*)colDefs
[colNo
].PtrDataObj
;
2799 dataptr
->year
= (SWORD
)dateval
.GetYear();
2800 dataptr
->month
= (UWORD
)(dateval
.GetMonth()+1);
2801 dataptr
->day
= (UWORD
)dateval
.GetDay();
2803 dataptr
->hour
= dateval
.GetHour();
2804 dataptr
->minute
= dateval
.GetMinute();
2805 dataptr
->second
= dateval
.GetSecond();
2809 *(double *)(colDefs
[colNo
].PtrDataObj
) = val
;
2814 } // if (!val.IsNull())
2815 } // wxDbTable::SetCol()
2818 GenericKey
wxDbTable::GetKey()
2823 blk
= malloc(m_keysize
);
2824 blkptr
= (wxChar
*) blk
;
2827 for (i
=0; i
< noCols
; i
++)
2829 if (colDefs
[i
].KeyField
)
2831 memcpy(blkptr
,colDefs
[i
].PtrDataObj
, colDefs
[i
].SzDataObj
);
2832 blkptr
+= colDefs
[i
].SzDataObj
;
2836 GenericKey k
= GenericKey(blk
, m_keysize
);
2840 } // wxDbTable::GetKey()
2843 void wxDbTable::SetKey(const GenericKey
& k
)
2849 blkptr
= (wxChar
*)blk
;
2852 for (i
=0; i
< noCols
; i
++)
2854 if (colDefs
[i
].KeyField
)
2856 SetColNull((UWORD
)i
, false);
2857 memcpy(colDefs
[i
].PtrDataObj
, blkptr
, colDefs
[i
].SzDataObj
);
2858 blkptr
+= colDefs
[i
].SzDataObj
;
2861 } // wxDbTable::SetKey()
2864 #endif // wxUSE_ODBC