多线程方案

时间:2016-05-25 09:22:28

标签: multithreading ms-access visual-c++ ms-office oledb

我在x64应用程序中使用Microsoft Access Database Engine 2010(Microsoft Office 2016的一部分)来处理mdb文件。 但是,当前版本的Microsoft Access数据库引擎2010(OLEDB提供程序Microsoft.ACE.OLEDB.12.0)有一个错误。 这个引擎在多线程工作中崩溃了。 如果我在不同的线程中与此提供程序创建两个OLE DB(或ADO DB)连接,则其中一个将在Mso40UIwin32client.dll中崩溃,异常为0xC0000005:访问冲突写入位置0x0000000000000000。

异常堆栈:

  • ACEOLEDBTest.exe中的0x00007FFB32361F28抛出异常:Microsoft C ++异常:内存位置的std :: runtime_error 0x0000006B771FEAF0。
  • 在0x00007FFB32361F28中抛出异常 ACEOLEDBTest.exe:Microsoft C ++异常:内存中的[rethrow] 位置0x0000000000000000。
  • 0x00007FFB32361F28抛出异常 在ACEOLEDBTest.exe中:Microsoft C ++异常:std :: runtime_error at 内存位置0x0000006B771FEAF0。
  • 抛出异常 ACEOLEDBTest.exe中的0x00007FFB32361F28:Microsoft C ++异常: 内存位置为0x0000006B771FEFB8的std :: runtime_error。
  • 异常 抛出0x00007FFAF9ED1271(Mso40UIwin32client.dll) ACEOLEDBTest.exe:0xC0000005:访问冲突写入位置 0x0000000000000000。

带有此错误的C ++代码示例:

#include "stdafx.h"
#include <atlcom.h>
#include <atldbcli.h>
#include <conio.h>

typedef UINT(__stdcall* fnThread)(PVOID);

HANDLE hExitEvent = NULL;

UINT __stdcall DbThread1(IN PVOID context)
{
    HRESULT hRes = ::CoInitializeEx(NULL, COINIT_MULTITHREADED);
    _ASSERTE(SUCCEEDED(hRes));

    CDataSource DataSource;         // Data source connection object

    while (::WaitForSingleObject(hExitEvent, 0) != WAIT_OBJECT_0)
    {
        // Open DB connection
        ATLTRACE2(atlTraceGeneral, 0, L"DbThread1: Create connection...\n");
        hRes = DataSource.OpenFromInitializationString(L"Provider=Microsoft.ACE.OLEDB.12.0; Data Source=\"C:\\Temp\\Index_empty1.mdb\"; Persist Security Info=False;");
        _ASSERTE(SUCCEEDED(hRes));

        // Close DB connection
        DataSource.Close();
        ATLTRACE2(atlTraceGeneral, 0, L"DbThread1: Close connection...\n");
        Sleep(20);
    }

    ::CoUninitialize();
    _endthreadex(0);
    return 0;
}

UINT __stdcall DbThread2(IN PVOID context)
{
    HRESULT hRes = ::CoInitializeEx(NULL, COINIT_MULTITHREADED);
    _ASSERTE(SUCCEEDED(hRes));

    CDataSource DataSource;         // Data source connection object

    while (::WaitForSingleObject(hExitEvent, 0) != WAIT_OBJECT_0)
    {
        // Open DB connection
        ATLTRACE2(atlTraceGeneral, 0, L"DbThread2: Create connection...\n");
        hRes = DataSource.OpenFromInitializationString(L"Provider=Microsoft.ACE.OLEDB.12.0; Data Source=\"C:\\Temp\\Index_empty2.mdb\"; Persist Security Info=False;");
        _ASSERTE(SUCCEEDED(hRes));

        // Close DB connection
        DataSource.Close();
        ATLTRACE2(atlTraceGeneral, 0, L"DbThread2: Close connection...\n");
        Sleep(20);
    }

    ::CoUninitialize();
    _endthreadex(0);
    return 0;
}

int main()
{
    ::CoInitializeEx(NULL, COINIT_MULTITHREADED);
    hExitEvent = ::CreateEvent(NULL, TRUE, FALSE, NULL);

    const fnThread aPtrs[] = { DbThread1, DbThread2 };
    HANDLE hDbThread[_countof(aPtrs)] = { NULL };
    for (int nIndex = 0; nIndex < _countof(aPtrs); nIndex++) {
        if ((hDbThread[nIndex] = (HANDLE)::_beginthreadex(nullptr, 0, aPtrs[nIndex], nullptr, 0, nullptr)) == NULL)
        {
            return 1;
        }
    }


    CComVariant varData;
    printf("Press any key to exit...");

    // Loop until any key struck
    while (!_kbhit())
    {
        for (DWORD i = 0; i < 100; i++)
        {
            // Test for bug of the OLEDB provider for MS ACCESS 2010.
            varData.Clear();
        }
        Sleep(0);
    }

    // Request threads to exit
    SetEvent(hExitEvent);

    // Wait for threads to exit
    WaitForMultipleObjects(_countof(hDbThread), hDbThread, TRUE, INFINITE);
    for (auto& h : hDbThread) {
        CloseHandle(h);
    }

    CloseHandle(hExitEvent);
    ::CoUninitialize();

    return 0;
}

您应该使用Visual C ++ 2013/2015为x64平台构建此示例。 我在MS forum找到了类似的错误。有人能帮助我吗?

1 个答案:

答案 0 :(得分:3)

我们也在多线程VB.Net(Framework v4.5.2)服务应用程序中遇到过这个问题。经过大量测试后,我们发现解决此问题的唯一方法是使用单个线程或关闭连接池(使用OLE DB Services = -2)。最后我们选择了后者,因为我们需要系统能够并行处理请求。

仅供参考,我安装的Office 2016版本不包含此驱动程序(因此我们的程序通过了任何类型的基本测试),但它包含在我们客户安装的Office 2016版本中。到目前为止,我已经检查了“Microsoft Office Professional Plus 2016”(来自MSDN和MS合作伙伴网络)和“Microsoft Office 365 ProPlus”,但它们似乎都没有附带Microsoft.ACE.OLEDB.12.0 OLEDB提供程序。此外,据我所知,可供下载的唯一版本的Microsoft Access数据库引擎2010可再发行组件是SP2(2013年7月22日发布),因此很难在开发环境中对其进行测试!