CDatabase::CDatabase
Konstrukcje CDatabase obiektu.
CDatabase( );
Uwagi
Po konstruowania obiektu, należy wywołać jej OpenEx lub Otwórz funkcji Członkowskie do ustanowienia połączenia ze źródłem danych określonym.
Użytkownik może okazać się osadzić CDatabase obiektu w klasie dokumentu.
Przykład
Ten przykład ilustruje użycie CDatabase w CDocument-klasy.
// This fragment is taken from the declaration for CMyDatabaseDoc
// CMyDatabaseDoc is derived from CDocument.
public:
// Declare a CDatabase embedded in the document
CDatabase m_dbCust;
// Initialize when needed
CDatabase* CMyDatabaseDoc::GetDatabase()
{
// Connect the object to a data source
if(!m_dbCust.IsOpen() && !m_dbCust.OpenEx(NULL))
return NULL;
return &m_dbCust;
}
Wymagania
Nagłówek: afxdb.h