X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e115e77131d5a7a68d0cfb2fb41fcb98deefdd29..004fd0c8834ca526d335a9294322d9def17ef8a9:/src/common/db.cpp diff --git a/src/common/db.cpp b/src/common/db.cpp index b5a4ae5a4d..073e09d252 100644 --- a/src/common/db.cpp +++ b/src/common/db.cpp @@ -57,6 +57,7 @@ #ifndef WX_PRECOMP #include "wx/string.h" #endif //WX_PRECOMP + #include "wx/filefn.h" #endif #if wxMAJOR_VERSION == 1 @@ -83,7 +84,7 @@ #include "wx/db.h" #endif -DbList* WXDLLEXPORT PtrBegDbList = 0; +DbList WXDLLEXPORT *PtrBegDbList = 0; #if __WXDEBUG__ > 0 #if wxMAJOR_VERSION == 2 @@ -773,8 +774,8 @@ void wxDB::Close(void) tiu = (CstructTablesInUse *)pNode->Data(); if (tiu->pDb == this) { - sprintf(s, "(%-20s) tableID:[%6lu] pDb:[%lu]", tiu->tableName,tiu->tableID,tiu->pDb); - sprintf(s2,"Orphaned found using pDb:[%lu]",this); + sprintf(s, "(%-20s) tableID:[%6lu] pDb:[%p]", tiu->tableName,tiu->tableID,tiu->pDb); + sprintf(s2,"Orphaned found using pDb:[%p]",this); wxMessageBox (s,s2); } pNode = pNode->Next(); @@ -782,7 +783,8 @@ void wxDB::Close(void) #endif // Copy the error messages to a global variable - for (int i = 0; i < DB_MAX_ERROR_HISTORY; i++) + int i; + for (i = 0; i < DB_MAX_ERROR_HISTORY; i++) strcpy(DBerrorList[i],errorList[i]); } // wxDB::Close() @@ -1715,7 +1717,7 @@ DBMS wxDB::Dbms(void) return(dbmsMS_SQL_SERVER); if (!stricmp(dbInf.dbmsName,"MySQL")) return(dbmsMY_SQL); - if (!stricmp(dbInf.dbmsName,"PostgresSQL")) // v6.5.0 + if (!stricmp(dbInf.dbmsName,"PostgreSQL")) // v6.5.0 return(dbmsPOSTGRES); if (!stricmp(dbInf.dbmsName,"ACCESS")) return(dbmsACCESS); @@ -1727,7 +1729,7 @@ DBMS wxDB::Dbms(void) /********** GetDbConnection() **********/ -wxDB* WXDLLEXPORT GetDbConnection(DbStuff *pDbStuff) +wxDB WXDLLEXPORT *GetDbConnection(DbStuff *pDbStuff) { DbList *pList;