Click here to Skip to main content
Licence CPOL
First Posted 5 Apr 2006
Views 33,200
Downloads 735
Bookmarked 39 times

Data Access Component and the Factory Design Pattern

By | 5 Apr 2006 | Article
A generic Data Access Component implementation written in C# that supports SQL, Oracle, OLEDB and ODBC data providers. Using the Factory design pattern for instantiating the data provider correct and specific objects determined at run time.

Introduction

Nearly every application today uses a relational database as its backend. Applications used to be monolithic and structured, but with the need for more functionality and ease of use, applications became larger, more complex and harder to maintain. The solution for rapid development became the clearer "Abstraction and Code Reuse."

Applications are layered:

  • Presentation Layer
  • Business Layer
  • Data Access Layer

A Data Access Layer usually provides the common mechanism and functionality for:

  • Opening and closing database Connections
  • Handling database Transactions
  • Executing SQL Commands, Data Readers and Data Sets

The Need for Change

Back in the old days, when I started development, I used to write a data access class specific for the data provider embedded in the application. Then I used to copy the class from one application into another.

These were the old days and the bad habits. I started to realize how bad it was when I needed to write a VB.NET application where I had to transform the C# data access class into VB.NET. I had to transform both classes from the SQL provider to the Oracle provider and then again to the OLEDB provider. Then things started to get really bad and messy: a lot of specific implementations sharing the same logic shattered across too many code files and classes.

Whenever I needed to add a new method, I had to write it down in too many places. Whenever I needed to fix one line of code, I had to fix it in too many code files. That's not to mention that I tend to forget, so I end up fixing the same bugs over and over again. Thus, "bad developer habits."

Realizing the Problem and Providing the Solution

Once I was talking to a friend of mine discussing the Factory Design Pattern and we ended the discussion with a practical Factory application, applying it to Data Access Components. We realized that if we needed to support two or more different data sources for the same application, then we would only need to change the connection string and not the Data Access Layer itself. By that time, I realized the need to program to interfaces instead of specific data providers’ implementations and that was my first real Object Oriented Programming lesson:

"Program to an interface and not to an implementation."

Another OOP approach:

"Favor object composition over inheritance."

Since that, the data access component common functionalities share the same logic, but differ in the native Connection, Command, Transaction and DataReader that each data source provider provides. Then it would be more practical and of more benefit to use an abstract class, providing the common logic in public methods, while providing abstract methods for each of the inherited data provider specific implementations to implement returning the native data source objects. Design guidelines:

"Use interfaces when you need classes that differ in implementation to have the same contract or protocol"

Included above source code for a generic Data Access Component implementation written in C# that supports SQL, Oracle, OLEDB and ODBC data providers, using the Factory design pattern for instantiating the specific data provider objects at run time based on the application configuration file or the caller defined data provider type. Somebody is doing his homework and changing the bad habits with the good ones.

Corrections? Suggestions? Comments? Feedback? Questions? Please e-mail me at waleed_timimi@hotmail.com.

Resources

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Waleed Al Tamimi

Web Developer

Egypt Egypt

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralJust Drop by Pinmemberdienius23:10 27 Feb '12  
GeneralGreat Stuff - Thanks for the effort Pinmembercmprogrock15:46 11 Dec '06  
Questionhow to check the implementation.. Pinmemberusafz6:33 26 Oct '06  
Generalcongratulations! Pinmemberpsychaos7:47 30 Sep '06  
GeneralReally Good DataAccesLayer. One Note PinmemberRicardo Casquete23:46 13 Jun '06  
GeneralPLEASE finish the article! ! ! ! ! ! PinmemberBrad Bruce3:01 6 Apr '06  
GeneralRe: PLEASE finish the article! ! ! ! ! ! Pinmember_alank7:04 6 Apr '06  

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

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

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 5 Apr 2006
Article Copyright 2006 by Waleed Al Tamimi
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid