使用 Visual Studio 2008 使用 C++ 连接到 MS Access 数据库

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/6445243/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-28 20:09:24  来源:igfitidea点击:

Connecting to MS Access database using C++ using Visual Studio 2008

c++databasevisual-studio-2008ms-access-2007

提问by LaDante Riley

I need some serious help trying to connect to an Access database using VS 2008's C++. I have done this in C# but I cant figure this out in C++. I need to use C++ for the connection because I am grabbing data using pre-compiled C++ code. I would really appreciate some help with this. Thanks I would like to odbc, but if you have another recommendation then I could change my mind.I am trying to connect to an Access database, the Northwind sample database, by following this example,

我需要一些认真的帮助来尝试使用 VS 2008 的 C++ 连接到 Access 数据库。我已经在 C# 中完成了这个,但我无法在 C++ 中解决这个问题。我需要使用 C++ 进行连接,因为我正在使用预编译的 C++ 代码获取数据。我真的很感激这方面的一些帮助。谢谢 我想使用 odbc,但是如果您有其他建议,那么我可以改变主意。我正在尝试按照以下示例连接到 Access 数据库,Northwind 示例数据库,

http://msdn.microsoft.com/en-us/library/cc811599.aspx

http://msdn.microsoft.com/en-us/library/cc811599.aspx

I am using a Windows 7 OS with Visual C++ 2008 for the compiler and IDE. The program is a console application. This example is specified for Access 2007 .accdb file types. Once I get it running correctly I will switch the path name, queries, and table names to my database. Below is the code that fails to build. I don't know what is causing this:

我正在使用带有 Visual C++ 2008 的 Windows 7 操作系统作为编译器和 IDE。该程序是一个控制台应用程序。此示例是为 Access 2007 .accdb 文件类型指定的。一旦我让它正确运行,我会将路径名、查询和表名切换到我的数据库。以下是无法构建的代码。我不知道是什么原因造成的:

Includes-->
   fstream
cmath
complex
iostream
iomanip
vector
limits
stdlib.h
stdio.h
time.h
fcntl.h
string.h
ctype.h
icrsint.h

using namespace std;



#import C:\Program Files\Common Files\system\ado\msado15.dll rename("EOF",
      "AdoNSEOF")

_bstr_t bstrConnect="Provider=Microsoft.ACE.OLEDB.12.0;Data " 
                    "Source=C:\Users\lriley\Documents\Northwind 2007.mdb;";

HRESULT hr;

int main()
{
::CoInitialize(NULL);
const char* DAM = "ADO";

ADODB::_ConnectionPtr pConn("ADODB.Connection");
hr = pConn->Open(bstrConnect, "admin", "", ADODB::adConnectUnspecified);
if(SUCCEEDED(hr))
{
    cout<<DAM<<": Successfully connected to database. Data source name:\n  "
        <<pConn->GetConnectionString()<<endl;

    // Prepare SQL query
    _bstr_t query = "SELECT Customers.[Company], Customers.[First Name] FROM "
                            "Customers;";
    cout <<DAM<<": SQL query \n  "<<query<<endl;

    // Execute
    ADODB::_RecordsetPtr pRS("ADODB.Recordset");
    hr = pRS->Open(query,
        _variant_t((IDispatch *) pConn, true),
        ADODB::adOpenUnspecified,
        ADODB::adLockUnspecified,
        ADODB::adCmdText);
    if(SUCCEEDED(hr))
    {
        cout<<DAM<<": Retrieve schema info for the given result set: "<< endl;
        ADODB::Fields* pFields = NULL;
        hr = pRS->get_Fields(&pFields);
        if(SUCCEEDED(hr) && pFields && pFields->GetCount() > 0)
        {
            for(long nIndex=0; nIndex < pFields->GetCount(); nIndex++)
            {
                cout << " | "<<_bstr_t(pFields->GetItem(nIndex)->GetName());
            }
            cout << endl;
        }
        else
        {
            cout << DAM << ": Error: Number of fields in the " <<
                           "result is set to zero." << endl;
        }
        cout<<DAM<<": Fetch the actual data: " << endl;
        int rowCount = 0;
        while (!pRS->AdoNSEOF)
        {
            for(long nIndex=0; nIndex < pFields->GetCount(); nIndex++)
            {
                cout<<" | "<<_bstr_t(pFields->GetItem(nIndex)->GetValue());
            }
            cout<< endl;
            pRS->MoveNext();
            rowCount++;
        }
        cout<<DAM<<": Total Row Count:  " << rowCount << endl;
    }
    pRS->Close();
    pConn->Close();
    cout<<DAM<<": Cleanup Done" << endl;
}
else
{
    cout<<DAM<<" : Unable to connect to data source: "<<bstrConnect<<endl;
}
::CoUninitialize();
return 0;
}

I recieve the following error when I try to build it:

当我尝试构建它时,我收到以下错误:

fatal error C1010: unexpected end of file while looking for precompiled header. Did you forget to add #include "stdafx.h" to your source?   

c:\users\lriley\documents\visual studio 2008\projects\test12\test12\test12.cpp  

Any help would be appreciated.

任何帮助,将不胜感激。

Thanks Dante

谢谢但丁

回答by Jahmic

Well, it's been a while, but you are going to need something like: http://msdn.microsoft.com/en-us/library/ms714562%28v=vs.85%29.aspx, look at SQLConnect..., a lot of variations to a theme, but the 2nd parameter is basically the path to your access db (*.mdb) file.

好吧,已经有一段时间了,但是您将需要以下内容:http: //msdn.microsoft.com/en-us/library/ms714562%28v=vs.85%29.aspx,看看 SQLConnect... ,主题有很多变化,但第二个参数基本上是您的访问数据库(*.mdb)文件的路径。

good luck.

祝你好运。

回答by user2635633

You just have to give in file properties *. Cpp

您只需要提供文件属性 *. 总价

-> Precompiled Header-No Precompiled Headers

-> 预编译头-无预编译头

Use precompiled header file - Stdafx.h xxxx

使用预编译头文件 - Stdafx.h xxxx