Asynchronous MFC ODBC Database Processing Using Threads

ID: Q166111


The information in this article applies to:
  • The Microsoft Foundation Classes (MFC), used with:
    • Microsoft Visual C++, 32-bit Editions, versions 4.2, 5.0, 6.0


SUMMARY

This sample shows how to provide asynchronous database processing by running a database query on a secondary thread.

The following files are available for download from the Microsoft Download Center. Click the file names below to download the files:


Mtdb.exe

For more information about how to download files from the Microsoft Download Center, please visit the Download Center at the following Web address

http://www.microsoft.com/downloads/search.asp
and then click How to use the Microsoft Download Center.

NOTE: Use the -d option when running MTDB.EXE to decompress the file and re- create the proper directory structure.


MORE INFORMATION

Beginning with version 4.2 of the MFC database classes, the ability to set the processing mode to asynchronous using CDatabase::SetSynchronousMode() has become obsolete. The MFC ODBC classes now use only synchronous processing.

The following functions, which were used with asynchronous processing in versions before 4.2, are also obsolete: CDatabase::InWaitForDataSource(), CDatabase::OnWaitForDataSource() and CRecordset::OnWaitForDataSource().

One way to implement asynchronous database processing with MFC 4.2 and above is to run your database query on a secondary worker thread. The MTDB sample illustrates this by having each document open the corresponding recordset on a new worker thread. When the user presses the "Cancel Query" button, the primary thread cancels processing on the secondary thread.

As with any multi-threaded database application, each component must be thread-safe. Specifically, you must be using a thread-safe ODBC driver, such as the Microsoft SQL Server ODBC driver, for this application to work correctly.

This sample uses the Student Registration database, which can be created for SQL Server using the STDREG sample program that is included with Visual C++.

Additional query words: kbvc420 kbvc500 kbvc600

Keywords : kbfile kbprg kbsample kbDatabase kbMFC kbODBC kbThread kbVC
Version : winnt:4.2,5.0,6.0
Platform : winnt
Issue type :


Last Reviewed: December 13, 1999
© 2000 Microsoft Corporation. All rights reserved. Terms of Use.