Click here to Skip to main content
Licence CPOL
First Posted 16 Dec 2008
Views 44,408
Downloads 1,905
Bookmarked 92 times

Data Access Layer Auto Generation Library

By | 17 Dec 2008 | Article
The proposed solution to avoid coding of data access layer in an ASP.NET project.

Introduction

Data Access Layer (DAL) is an important part in almost all architectures. I encountered problems creating DAL for large databases — maintaining DAL for these databases was another nightmare. So I thought of a generic solution to this problem, which was to auto generate the DAL.

I made use of System.CodeDom which is a code generator to produce source code in a particular programming language.

Using the Code

In order to generate DAL in your ASP.NET project follow the below steps:

  1. Add a reference of DalProvider.dll which is a DAL Auto-Generator Library
  2. Add the following under compilation tag in the web.config
            <system.web>
    
    		<compilation debug="true">
    
    			<buildProviders>
    				 <add extension=".dal"
                                             type="AnoopsDALGenerator.DalProvider"/>
                    	<buildProviders>
     		</compilation>
    	</system.web>

    This allows the compilation of any file with the ".dal" extension added to the project with our DAL auto generation library.

  3. Add a XML file to the App_Code folder in the below mentioned format with the extension ".dal"
    	<dal>
       		<connectionString>Data Source =XXXXX; Initial Catalog = XXXXX;
                          User Id =XXXXX; Password=XXXXX 
    		</connectionString>
       		<nameSpace>DAL1</nameSpace>
    
    	</dal>

    In this XML file under the "dal" root tag we need to mention the connection string of the database as well as the namespace to access the auto generated DAL.

  4. Compile your ASP.NET project. This generates the DAL with the following features:
  • Namespace "DAL1" as specified in the XML file
  • All tables are represented as classes with its columns as member fields that can be accessed using property with name in the following pattern "Col" + Column Name. This enables the users to create objects of tables.
                DAL1.TableName table1 = new DAL1.TableName();
                tabel1.ColColumnName1 = "2";
                table2.ColColumnName2 = "Trial";
                Response.Write ("Data in column2:" +  table2.ColColumnName2);
  • All stored procedure access methods are defined under the DataProcedure class. Thus to access a stored procedure the user has to use the respective stored procedure access function ("Access"+StoredProcedureName).
                DAL2.DataProcedure dbObject = new DAL2.DataProcedure();
    	    DataTable dataResult=new DataTable();
                int returnStatus = dbObject.AccessStoredProcedureName(ref dataResult,
                    "21", "Thomas", "Atlas", "ITDept");
                if (returnStatus>

A reference to a datatable has to be passed to this function to retrieve the records fetched using the stored procedure.

Code

The code is big but simple. The work flow of this library is as below:

  • Extract the connection string and the proposed namespace from the XML file during compilation
  • Query the systemobjects table and systemcolumns table to list out the tables and columns respectively
                 --To extract the table information from database	            
                   Select * from sysobjects where type = 'u'
                 --To extract the column information with respect to the table 
    	      Select * from syscolumns
  • Generate classes from the table names and create coulmns as member variables under it
  • Create a class named DataProcedure to hold the functions to access stored procedures
  • Query the systemobjects table to list all the stored procedures
           Select * from sysobjects where type = 'p' and category = 0
  • Query systemcolumns to get the parameters of the respective stored procedure
  • SELECT
    param.name AS [Name],
    ISNULL(baset.name, N'') AS [SystemType],
    CAST(CASE WHEN baset.name IN (N'char', N'varchar', N'binary', N'varbinary',
        N'nchar', N'nvarchar') 
    THEN param.prec ELSE param.length END AS int) AS [Length],
    CAST(param.xprec AS int) AS [NumericPrecision],
    CAST(param.xscale AS int) AS [NumericScale],
    null AS [DefaultValue],
    CAST(
        CASE param.isoutparam WHEN 1 THEN param.isoutparam WHEN 0 THEN 
           CASE param.name WHEN '' 
    THEN 1 ELSE 0 END END AS bit) AS [IsOutputParameter]
    FROM
    dbo.sysobjects AS sp
    INNER JOIN sysusers AS ssp ON ssp.uid = sp.uid
    INNER JOIN syscolumns AS param ON (param.number = 1) AND (param.id=sp.id)
    LEFT OUTER JOIN systypes AS baset ON baset.xusertype = 
        param.xtype and baset.xusertype = baset.xtype
    WHERE
     (sp.xtype = N'P' OR sp.xtype = N'RF')and(sp.id= ?  and ssp.name=N'dbo')
    ORDER BY
    CAST(param.colid AS int) ASC
  • Combine all the information and generate functions to access stored procedures

Points of Interest

This solution is a good example of using System.CodeDom.

License

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

About the Author

Anoop Unnikrishnan

Software Developer

India India

Member

Anoop Unnikrishnan is associated with a CMM Level 5 Company. He has done his Bachelor of Engineering in Information Science. His certifications include OCA,IBM SOA Associate, MCAD, MCTS and MCPD. Currently persuing MBA.
 
He is working on .NET since first Beta versions. He has also published his book "Start Programming with C#".
 
Grab a copy from www.pothi.com/pothi/book/anoop-unnikrishnan-start-programming-c
 
Anoop can be reached : anoopukrish@gmail.com

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
GeneralLibrary has trouble with tablenames using special chars PinmemberThomas-H.23:32 13 Jan '09  
My database has a table named T$OBJECTS for example. The generator tries to create a class called T$OBJECTS which fails throwing a compiler error CS1056.
 
I guess this is also happening on column names like C$COLUMN1.
 
Did not look into the code yet, just tried running it once, so I might find a solution for this.
 
Thanks for the article. The idea and solution looks fine so far.
GeneralRe: Library has trouble with tablenames using special chars PinmemberAnoop Unnikrishnan1:46 11 Mar '09  
GeneralObject reference not set to an instance of an object. PinmemberPeter de Witte (wrk)21:54 22 Dec '08  
GeneralRe: Object reference not set to an instance of an object. PinmemberAnoop Unnikrishnan23:10 25 Dec '08  
GeneralExcellent Article PinmemberThomas C.P0:55 20 Dec '08  
GeneralRe: Excellent Article PinmemberAnoop Unnikrishnan19:41 20 Dec '08  
GeneralMy vote of 1 PinmemberRuchit Surati18:51 18 Dec '08  
GeneralRe: My vote of 1 PinmemberAnoop Unnikrishnan19:44 20 Dec '08  
Questioncan work on MS Access? Pinmemberguaike19:17 17 Dec '08  
AnswerRe: can work on MS Access? PinmemberThomas C.P0:39 20 Dec '08  
GeneralMy vote of 1 Pinmember[DK]KiloDunse10:13 16 Dec '08  
GeneralRe: My vote of 1 [modified] PinmemberAnoop Unnikrishnan18:46 16 Dec '08  

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
Web03 | 2.5.120529.1 | Last Updated 17 Dec 2008
Article Copyright 2008 by Anoop Unnikrishnan
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid