X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7eeba5114ce9c7eccdeb8bd68ee608bb7ba462e3..7ac21a67618fd116d17d39a936380b3689972ee3:/include/wx/db.h diff --git a/include/wx/db.h b/include/wx/db.h index 5d7d67c220..f678c71452 100644 --- a/include/wx/db.h +++ b/include/wx/db.h @@ -41,12 +41,7 @@ #if wxUSE_MFC #include #else // !wxUSE_MFC - #ifndef STRICT - #define STRICT 1 - #endif - - #include - #include "wx/msw/winundef.h" + #include "wx/msw/wrapwin.h" #endif // wxUSE_MFC/!wxUSE_MFC // If you use the wxDbCreateDataSource() function with MSW/VC6, @@ -63,8 +58,7 @@ #include "odbcinst.h" #else #if defined(__WINDOWS__) && ( defined(HAVE_W32API_H) || defined(__BORLANDC__) ) - #include - #include "wx/msw/winundef.h" + #include "wx/msw/wrapwin.h" #endif extern "C" { #if defined(wxUSE_BUILTIN_IODBC) && wxUSE_BUILTIN_IODBC @@ -80,11 +74,22 @@ #endif #endif #else + #if defined( __WXMOTIF__ ) && defined( __VMS ) + // solves a type definition mismatch between IODBC and MOTIF on OpenVMS + #define BOOL int + #endif + #if defined( __DARWIN__ ) + // solves a type definition mismatch between IODBC and Cocoa + #define BOOL signed char + #endif #include #include //#if wxUSE_UNICODE // #include //#endif + #if defined( __WXMOTIF__ ) && defined( __VMS ) + #undef BOOL + #endif #endif } #endif @@ -727,6 +732,9 @@ public: bool FwdOnlyCursors(void) {return fwdOnlyCursors;} + // return the string with all special SQL characters escaped + wxString EscapeSqlChars(const wxString& value); + // These two functions are provided strictly for use by wxDbTable. // DO NOT USE THESE FUNCTIONS, OR MEMORY LEAKS MAY OCCUR void incrementTableCount() { nTables++; return; }