#ifndef WX_PRECOMP
#include "wx/string.h"
#endif //WX_PRECOMP
+ #include "wx/filefn.h"
#endif
#if wxMAJOR_VERSION == 1
#include "wx/db.h"
#endif
-DbList* WXDLLEXPORT PtrBegDbList = 0;
+DbList WXDLLEXPORT *PtrBegDbList = 0;
#if __WXDEBUG__ > 0
#if wxMAJOR_VERSION == 2
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();
#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()
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);
/********** GetDbConnection() **********/
-wxDB* WXDLLEXPORT GetDbConnection(DbStuff *pDbStuff)
+wxDB WXDLLEXPORT *GetDbConnection(DbStuff *pDbStuff)
{
DbList *pList;