2011-09-15 76 views
0

我有一個用VFP v9 SP2編寫的程序可以工作多年。最近有一個新的Windows 7的盒子,並且必須重新安裝我的所有工具。優勢OLE DB提供商就是其中之一。當我試着運行我信任的程序,它掛在第一次調用OLE DB提供程序 的(相關)的代碼爲:其中安裝提供優點OLE DB提供程序掛在Windows 7系統上

loConn = createobject("ADODB.Connection") 
… 
*cDD has beendefined previously and points to the Data Dictionary file 

loConn.ConnectionString = 'Provider=Advantage OLE DB Provider; Data Source='+cDD+'; 
    ServerType=ADS_LOCAL_SERVER|ADS_REMOTE_SERVER; User ID=user;Password=password' 

loConn.open() && Hangs right here! (Not responding for minutes) 

安裝後我檢查了文件夾,但所有的dll與其他文件一起存在...任何想法?去哪裏看?

回答

1

Windows 7 64位不支持OleDB。微軟不打算將其遷移到新的64位操作系統。

相關問題