All'inizio del mio programma, ho bisogno di leggere i dati da un database MS Access (.mdb) in un controllo a discesa. Questo viene fatto in modo che ogni volta che l'utente digita quel controllo, l'applicazione possa auto-completarsi.Implementazione del recupero di record di massa
In ogni caso, la lettura dal database è durata per sempre, quindi ho pensato di implementare il recupero di file alla rinfusa.
Questo è il codice che ho:
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
assomiglia:
#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
assomiglia:
#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
E nel mio database, il INFOTABLE
assomiglia:
NAME AGE
---- ---
Name1 Age1
Name2 Age2
.
.
.
.
Tutto ciò che devo fare è solo leggere i dati dal database. Qualcuno può dirmi cosa sto sbagliando? Il mio codice ora si comporta esattamente come un normale recupero. Non si verificano accuse di massa.
EDIT:
ho curiosato nel DBRFX.cpp
e ho scoperto che il mio passato RFX_Text_Bulk()
inizializza m_NameData
come new char[nRowsetSize * nMaxLength]
!
Ciò significa che m_NameData
è solo un array di caratteri! Ho bisogno di recuperare più nomi, quindi non avrei bisogno di un array di caratteri 2D? La cosa più strana è che lo stesso RFX_Text_Bulk()
inizializza il mio passaggio m_NDCDataLengths
come new long[nRowsetSize]
. Perché nel mondo un array di caratteri avrebbe bisogno di una serie di lunghezze ?!
qual è la dimensione del campo "[NOME]" nel database? – Goldorak84
@ Goldorak84, 15 caratteri max. –
Infatti, m_NameData rappresenta una matrice di matrici di caratteri. m_NDCDataLengths rappresenta le lunghezze di ogni stringa in m_NameData – Goldorak84