開發平台(Platform): (Ex: Win10, Linux, ...)
win7+VS2010
轉換成
win7+VS2017
編譯器(Ex: GCC, clang, VC++...)+目標環境(跟開發平台不同的話需列出)
MFC
32bit win xp
32bit win 7
64bit win 7
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
問題(Question):
原本的程式使用VS2010有安裝VS2010 SP1,在win7底下開發MFC,連接的資料庫是
MS ACCESS,程式碼在VS2010裡下build完後的執行檔可以在win xp和win 7底下執行
後來我想試著改用VS2017去維護原本的程式碼,就使用VS2017去開啟VS2010的.sln
並且自動轉換後,原本的程式碼是可以在VS2017底下編譯並且在win7 sp1執行,但是
同個執行檔換到win xp sp3底下執行會跳出an unhandled win32 exception occurred
in我的執行檔.exe這樣的錯誤,追查後發現是在開啟資料庫連結的時候發生的問題
程式碼如下:
// 下面這行在.h裡面
_ConnectionPtr m_pConnection;
UINT DataBase_Class::OpenDB(void)
{
CoInitialize(NULL);
m_pConnection.CreateInstance(__uuidof(Connection));
try
{
CString strConnect;
strConnect.Format(_T("Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=D:\\DB\\CardList.mdb"));
DebugOutput(strConnect);
DebugOutput(_T("stop6"));
// VS2017建置後,以下這行程式碼在XP底下發生exception
m_pConnection->Open((_bstr_t)strConnect,"","",adModeUnknown);
DebugOutput(_T("stop7"));
}
catch (_com_error *e)
{
// 不會進到這裡來,會直經接跳出just-in-time debugger視窗
DebugOutput(e->ErrorMessage());
AfxMessageBox(e->ErrorMessage());
return 1;
}
return 0;
}
以上是相關的程式碼,發生exception的時候用try catch也沒辦法接住,直接跳出
visual studio just-in-time debugger的視窗裡面寫著an unhandled win32 exception
occurred in 我的執行檔.exe
在使用VS2017建置執行檔的時候,有先在專案->屬性->General->Platform Toolset這裡
選擇visual studio 2010,這樣的情況下,VS2017建置出來的執行檔和在win7 sp1底下
執行的話m_pConnection->Open這行不會有exception,但在XP SP3底下執行則會有上述
的excpetion發生,可是同樣的code在VS2010建出來的執行檔在XP SP3和win7 SP1都不會
有exception,請問我還漏掉了什麼設定嗎? 謝謝
PS. 抱歉,XP底下一直裝不起來visual studio 2017 community,下載的執行檔點兩下後
只跑了一個像是解壓縮的進度條就沒反應了,目前還在找原因...