]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/dbtable.cpp
compile fix for VC++ 5
[wxWidgets.git] / src / common / dbtable.cpp
index 1bec4d64fb7083239e4a650ebadd876cff2ae674..ba8833b035404a2fed3807d87396ced4be9ca90b 100644 (file)
        #include "wx/dbtable.h"
 #endif
 
+#ifdef __MWERKS__
+#define stricmp _stricmp
+#define strnicmp _strnicmp
+#endif
+
 #ifdef __UNIX__
 // The HPUX preprocessor lines below were commented out on 8/20/97
 // because macros.h currently redefines DEBUG and is unneeded.
@@ -561,7 +566,8 @@ bool wxTable::getRec(UWORD fetchType)
 {
        RETCODE retcode;
 
-#ifndef FWD_ONLY_CURSORS
+#if wxODBC_FWD_ONLY_CURSORS
+
        // Fetch the NEXT, PREV, FIRST or LAST record, depending on fetchType
        UDWORD  cRowsFetched;
        UWORD   rowStatus;
@@ -571,8 +577,8 @@ bool wxTable::getRec(UWORD fetchType)
                else
                        return(pDb->DispAllErrors(henv, hdbc, hstmt));
 #else
-       // Fetch the next record from the record set
 
+       // Fetch the next record from the record set
        retcode = SQLFetch(hstmt);
        if (retcode != SQL_SUCCESS && retcode != SQL_SUCCESS_WITH_INFO)
        {