admin管理员组文章数量:1345139
I have an application which is x64 and which is using ADODB connection via importing msado15.dll, like it is shown below:
#import "C:\Program Files\Common Files\System\ado\msado15.dll" no_namespace rename("EOF", "ADOEOF") rename("BOF","ADOBOF")
_ConnectionPtr con;
HRESULT HRR = con.CreateInstance(__uuidof(Connection));
I have wine 9.0~repack-4build3, a fresh x64 wineprefix, where I downloaded (from the Microsoft site) and installed MDAC 2.8 and Microsoft Access Runtime. However, when I run the program I got the hresult 0x80004002 (E_NOINTERFACE) on the con.CreateInstance call, which means that the class either is not registered, or cannot be created.
Could you tell me what is the proper installation and settings order to make the ADO connection class be visible?
Besides, I tried an ODBC connection to the same database, but at any case, does not matter whatever I tried, I got an error while connecting to the database. The code is
#include "afxdb.h"
CDatabase cdbMydb{};
cdbMydb.OpenEx(L"DSN=MS Access Database;DBQ=MyDB.mdb");
the error occurres on the cdbMydb.OpenEx line, it seems that error is the same.
So, there is a second question: is there a way of connecting a database on Wine in x64 prefix?
本文标签: odbcHow to connect to a database on WINE using x64 bit prefixStack Overflow
版权声明:本文标题:odbc - How to connect to a database on WINE using x64 bit prefix? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743780609a2537756.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论