AfxDbInitModule

void AFXAPI AfxDbInitModule( );

#include <afxdll_.h>

For MFC database (or DAO) support from a regular DLL that is dynamically linked to MFC, add a call to this function in your regular DLL's CWinApp::InitInstance function to initialize the MFC database DLL. Make sure this call occurs before any base-class call or any added code which accesses the MFC database DLL.The MFC database DLL is an extension DLL; in order for an extension DLL to get wired into a CDynLinkLibrary chain, it must create a CDynLinkLibrary object in the context of every module that will be using it. AfxDbInitModule creates the CDynLinkLibrary object in your regular DLL's context so that it gets wired into the CDynLinkLibrary object chain of the regular DLL.