Click here to Skip to main content
15,885,244 members
Articles / Desktop Programming / MFC
Article

MTDaoRecordset : A DAO Class that supports MultiThreading

Rate me:
Please Sign up or sign in to vote.
3.33/5 (3 votes)
4 Sep 2002 57.7K   1K   20   4
If you're sufferring from dao cracks in multithreaded environment, this article will be useful to you

Introduction

CMTDaoDatabase is derived from CDaoDatabase and has a static CCriticalSection member variable. And CMTDaoRecordset is derived from CDaoRecordset. All calls to CDaoDatabase and CDaoRecordset public member functions is serialized by the static member variable of CMTDaoDatabase, so you can use these classes in a multithreaded enviroment.

Usage

To use CMTDaoDatabase, just replace CDaoDatabase with CMTDaoDatabase. You can create your own recordset classes with VC ClassWizard, and then replace all occurences of CDaoRecordset with CMTDaoRecordset in your source files of derived classes. You can also defined CMTDaoRecordset objects and use them as CDaoRecordset objects. And I am sure that there won't be any deadlock problem bothering you. Bug reports and revisions are welcomed, thanks.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralOpening DB/Recordset fails Pin
Akif15-Feb-04 17:57
Akif15-Feb-04 17:57 
GeneralRe: Opening DB/Recordset fails Pin
eo12112-Jun-08 10:49
eo12112-Jun-08 10:49 
GeneralDAO is enough for my work Pin
Kevin Hua5-Sep-02 17:03
Kevin Hua5-Sep-02 17:03 
Generalor... Pin
Anonymous4-Sep-02 20:18
Anonymous4-Sep-02 20:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.