Click here to Skip to main content
15,867,330 members
Articles / Desktop Programming / MFC
Article

Using ADO.NET in MFC Projects

Rate me:
Please Sign up or sign in to vote.
4.79/5 (33 votes)
9 Aug 20033 min read 224.8K   2.9K   49   46
Mixing managed and unmanaged code and using .NET library in MFC projects

Sample Image - adonetinmfc.gif

Introduction

The main goal of writing this article is to explain how we can mix the .NET library with the MFC library in very easy steps, gaining the benefits of .NET in unmanaged code such as MFC projects. So for this reason I’ve added ADO.NET in a MFC project to use the simple, type-safe and powerful functionalities of that library.

ADO.NET

In designing tools and technologies to meet the needs of today's developer, Microsoft recognized that an entirely new programming model for data access was needed, one that is built upon the .NET Framework. Building on the .NET Framework ensures that the data access technology would be uniform, components would share a common type system, design patterns and naming conventions. ADO.NET was designed to meet the needs of this new programming model: disconnected data architecture, tight integration with XML, common data representation with the ability to combine data from multiple and varied data sources, and optimized facilities for interacting with a database, all native to the .NET Framework.

Mixing Managed and Unmanaged code

To use managed code in a MFC projects we must change some MFC project settings and add some code to declare the .NET library.

Changing Configuration

To alter the configuration of your MFC project to use unmanaged code, change the following items in the Configuration Properties dialog box.

General - Use Managed Extensions = YES

C/C++ - General - Debug Information Format = Program Database (/Zi)

C/C++ - General - Compile As Managed = Assembly Support (/clr)

C/C++ - Code Generation - Enable Minimal Rebuild = No

C/C++ - Code Generation - Basic Runtime Checks = Default

The /clr compiler option provides module-level control for compiling functions either as managed or unmanaged. Now you must add the following code wherever you want to use managed code. If you want use managed code in several classes of your project it is better that you add this code to the stdafx.h file.

C++
#pragma managed

#using <mscorlib.dll>
#using <System.dll>
#using <system.data.dll>

#using namespace System;
#using namespace System::Data;
#using namespace System::Data::OleDb;

The managed pragma enables function-level control for compiling functions as managed. An unmanaged function will be compiled for the native platform, and execution of that portion of the program will be passed to the native platform by the common language runtime.

Because we are using ADO.NET in our project so we have to add System::Data and since we want to use the MS Access database we have added System::Data::OleDb.

__gc Pointers in Unmanaged Classes

To declare a managed pointer as member in a class we must use __gc pointers. It is illegal to declare a member of an unmanaged class to have __gc pointer type. In order to point to a managed object from the C++ heap, the header file vcclr.h provides the type-safe wrapper template gcroot. Use of this template allows the programmer to embed a virtual __gc pointer in an unmanaged class and treat it as if it were the underlying type. The header file vcclr.h is included in VS.NET by default and you don’t need to include it to your application. Anyway this file can be found in the \Microsoft Visual Studio .NET\Vc7\include directory.

Therefore for declaring pointers of OleDB classes as members we must writing something like this.
C++
gcroot<OleDbConnection*> m_OleDbConnection;
gcroot<OleDbCommand*>    m_OleDb;
gcroot<OleDbDataReader*> m_Reader;

Writing Managed Code

Now it is time to write managed code in an unmanaged function.

C++
#pragma push_macro("new")
#undef new

try
{
    m_OleDbConnection = new OleDbConnection(
                 S"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\\test.mdb"
            );
    m_OleDbConnection->Open();    // Open up the connection
    m_OleDb = new OleDbCommand(S"select * from Persons", m_OleDbConnection);
    m_Reader = m_OleDb->ExecuteReader();

    int count = 0;

    while (m_Reader->Read())
    {
        AddToList(count,m_Reader->get_Item("First Name")->ToString(),
                  m_Reader->get_Item("Last Name")->ToString(),
                  m_Reader->get_Item("Phone Number")->ToString()
        );
        count++;
    }
}
catch(Exception *e)
{
    AfxMessageBox(CString(e->ToString()));
}
__finally
{
    m_Reader->Close();
    m_OleDbConnection->Close();
}

#pragma pop_macro("new")

the #pragma push_macro("new"), #undef new and #pragma pop_macro("new") are used when your project is in debug mode. Otherwise you will get errors saying placement arguments not allowed while creating instances of managed classes.

This was a small sample that indicates how we can use .NET library in MFC based projects. By following this sample You can write more complicated projects and using more benefits of .NET. It is easy to cope with and entirely feasible to extend your own MFC applications with managed code.

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
Software Developer (Senior)
Iran (Islamic Republic of) Iran (Islamic Republic of)
I am an independent principal software
developer and architect with nearly 20 years of
hands-on experience in the Microsoft
technology stack with a special focus on .NET
Framework (.NET Core). While working primarily
in the industrial area, I learned how to deliver
critical software systems that are highly
available, secure, and fast.
I am now a senior backend developer delivering
SaaS applications running on cloud and
on-premises. I am generally interested in Clean
Architecture, DDD, Microservices, Azure and AWS

Comments and Discussions

 
Generalusing my own NET.dll lib in MFC Pin
anderslundsgard21-Feb-06 0:42
anderslundsgard21-Feb-06 0:42 
GeneralRe: using my own NET.dll lib in MFC Pin
IC1827-Jun-06 7:30
IC1827-Jun-06 7:30 
AnswerRe: using my own NET.dll lib in MFC [modified] Pin
Himanshu R. Swami5-Mar-08 4:31
Himanshu R. Swami5-Mar-08 4:31 
Questionvs2005? Pin
jiva27-Dec-05 16:06
jiva27-Dec-05 16:06 
AnswerRe: vs2005? Pin
Himanshu R. Swami5-Mar-08 4:30
Himanshu R. Swami5-Mar-08 4:30 
GeneralExcellent Pin
Dr. Dennis17-Apr-05 18:39
Dr. Dennis17-Apr-05 18:39 
Questionwindows forms in MFC projects? Pin
cess25-Jan-05 5:51
cess25-Jan-05 5:51 
AnswerRe: windows forms in MFC projects? Pin
Majid Shahabfar26-Jan-05 4:24
Majid Shahabfar26-Jan-05 4:24 
AnswerRe: windows forms in MFC projects? Pin
earlgraham27-Oct-06 9:46
earlgraham27-Oct-06 9:46 
Generali can't find the /clr in the evc Pin
herime12-Jan-04 20:03
herime12-Jan-04 20:03 
GeneralRe: i can't find the /clr in the evc Pin
Himanshu R. Swami5-Mar-08 4:22
Himanshu R. Swami5-Mar-08 4:22 
GeneralRecommend DLL Pin
Abraxas2312-Dec-03 1:30
Abraxas2312-Dec-03 1:30 
GeneralWorks great, except for CTreeCtrl Pin
Abraxas2310-Dec-03 9:41
Abraxas2310-Dec-03 9:41 
GeneralRe: Works great, except for CTreeCtrl Pin
Anonymous18-Mar-04 7:09
Anonymous18-Mar-04 7:09 
GeneralRe: Works great, except for CTreeCtrl Pin
rammreddy22-Mar-06 13:09
rammreddy22-Mar-06 13:09 
Generalperformance issue Pin
FHT9-Oct-03 0:22
FHT9-Oct-03 0:22 
GeneralGood Work! Pin
Abbas_Riazi11-Aug-03 20:05
professionalAbbas_Riazi11-Aug-03 20:05 
GeneralRe: Good Work! Pin
Majid Shahabfar11-Aug-03 20:43
Majid Shahabfar11-Aug-03 20:43 

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.