10

在我的程序开始时,我需要将 MS Access 数据库 (.mdb) 中的数据读取到下拉控件中。这样做是为了每当用户键入该控件时,应用程序就可以自动完成。

无论如何,从数据库中读取数据需要很长时间,所以我想我会实现批量行获取。

这是我的代码:

CString sDsn;
CString sField;
sDsn.Format("ODBC;DRIVER={%s};DSN='';DBQ=%s",sDriver,sFile);
TRY
{
    // Open the database
    database.Open(NULL,false,false,sDsn);

    // Allocate the rowset
    CMultiRowset recset( &database );

    // Build the SQL statement
    SqlString =  "SELECT NAME "
            "FROM INFOTABLE";

    // Set the rowset size. These many rows will be fetched in one bulk operation
    recset.SetRowsetSize(25);

    // Open the rowset
    recset.Open(CRecordset::forwardOnly, SqlString, CRecordset::readOnly | CRecordset::useMultiRowFetch);

    // Loop through each rowset
    while( !recset.IsEOF() )
    {
        int rowsFetched = (int)recset.GetRowsFetched(); // This value is always 1 somehow
        for( int rowCount = 1; rowCount <= rowsFetched; rowCount++ )
        {
            recset.SetRowsetCursorPosition(rowCount);
            recset.GetFieldValue("NAME",sField);
            m_nameDropDown.AddString(sField);
        }

        // Go to next rowset
        recset.MoveNext();
    }

    // Close the database
    database.Close();
}
CATCH(CDBException, e)
{
    // If a database exception occured, show error msg
    AfxMessageBox("Database error: "+e->m_strError);
}
END_CATCH;

MultiRowset.cpp好像:

#include "stdafx.h"
#include "afxdb.h"
#include "MultiRowset.h"

// Constructor
CMultiRowset::CMultiRowset(CDatabase *pDB)
   : CRecordset(pDB)
{
    m_NameData = NULL;
    m_NameDataLengths = NULL;

    m_nFields = 1;
    CRecordset::CRecordset(pDB);
}

void CMultiRowset::DoBulkFieldExchange(CFieldExchange *pFX)
{
   pFX->SetFieldType(CFieldExchange::outputColumn);
   RFX_Text_Bulk(pFX, _T("[NAME]"), &m_NameData, &m_NameDataLengths, 30);
}

MultiRowset.h好像:

#if !defined(__MULTIROWSET_H_AD12FD1F_0566_4cb2_AE11_057227A594B8__)
#define __MULTIROWSET_H_AD12FD1F_0566_4cb2_AE11_057227A594B8__

class CMultiRowset : public CRecordset
{
public:
      // Field data members
      LPSTR m_NameData;

      // Pointers for the lengths of the field data
      long* m_NameDataLengths;

      // Constructor
      CMultiRowset(CDatabase *);

      // Methods
      void DoBulkFieldExchange(CFieldExchange *);
};

#endif

在我的数据库中,INFOTABLE看起来像:

NAME    AGE
----    ---
Name1   Age1
Name2   Age2
      .
      .
      .
      .

我需要做的只是从数据库中读取数据。有人可以告诉我我做错了什么吗?我的代码现在的行为与正常提取完全一样。没有发生批量提取。

编辑:

我只是四处逛逛,DBRFX.cpp发现RFX_Text_Bulk()将我的传递初始化m_NameDatanew char[nRowsetSize * nMaxLength]

这意味着m_NameData只是一个字符数组!我需要获取多个名称,所以我不需要二维字符数组吗?最奇怪的是,同样RFX_Text_Bulk()将 my pass 初始化m_NDCDataLengthsnew long[nRowsetSize]. 为什么一个字符数组需要一个长度数组?!

4

3 回答 3

3

根据http://msdn.microsoft.com/en-us/library/77dcbckz.aspx#_core_how_crecordset_supports_bulk_row_fetching您必须在调用 SetRowsetSize 之前使用 CRecordset::useMultiRowFetch 标志打开 CRecordset:

要实现批量取行,必须在 Open 成员函数的 dwOptions 参数中指定 CRecordset::useMultiRowFetch 选项。要更改行集大小的设置,请调用 SetRowsetSize。

于 2013-03-05T09:18:30.873 回答
2

你几乎做对了。要获取值,我会更改您的

        for( int rowCount = 1; rowCount <= rowsFetched; rowCount++ )
        {
            recset.SetRowsetCursorPosition(rowCount);
            recset.GetFieldValue("NAME",sField);
            m_nameDropDown.AddString(sField);
        }

通过这样的事情

for( int nPosInRowset = 0; nPosInRowset < rowsFetched; nPosInRowset++ )
{
    //Check if value is null
    if (*(recset.m_NameDataLengths + nPosInRowset) == SQL_NULL_DATA)
        continue;    

    CString csComboString;
    csComboString = (recset.m_NameData + (nPosInRowset * 30)); //Where 30 is the size specified in RFX_Text_Bulk

    m_nameDropDown.AddString(csComboString);
}

编辑:要获取多于一行,请删除 CRecordset::forwardOnly 选项

编辑 2:您也可以保留 CRecordset::forwardonly,但添加 CRecordset::useExtendedFetch 选项

于 2013-04-02T14:10:11.307 回答
0

刚刚面临同样的问题。您应该只在参数recset.Open()调用中使用,而不是。希望这可以帮助某人...dwOptionsCRecordset::useMultiRowFetchCRecordset::readOnly | CRecordset::useMultiRowFetch

编辑:-重新检查后是这种情况-使用批量记录集并使用 and 打开时CRecordset::forwardOnlyCRecordset::readOnly您还必须CRecordset::useExtendedFetchdwOptions. 对于其他类型的滚动,使用CRecordset::readOnly | CRecordset::useMultiRowFetch就好了。

于 2015-03-19T19:24:10.883 回答