Click here to Skip to main content
6,295,667 members and growing! (17,589 online)
Email Password   helpLost your password?
Database » Database » Data Access     Intermediate License: The Common Development and Distribution License (CDDL)

Dynamically Generate C# Data Access Code for Microsoft SQL and Other Databases

By mattraffel

With this tool, dynamically generate C# data layer code (CRUD functions) for Microsoft SQL and other databases
C# 2.0, Windows, .NET, Visual Studio, DBA, Dev
Posted:10 Oct 2007
Updated:19 Dec 2008
Views:25,868
Bookmarked:57 times
Announcements
Loading...
 
Search    
Advanced Search
printPrint   Broken Article?Report       add Share
  Discuss Discuss   Recommend Article Email
12 votes for this article.
Popularity: 3.67 Rating: 3.40 out of 5
2 votes, 16.7%
1
1 vote, 8.3%
2
1 vote, 8.3%
3
5 votes, 41.7%
4
3 votes, 25.0%
5

Introduction

I have made the entire program and its code available. Please use the following links for the downloads:

Using the Program

This section is a "quick start guide", as the Word document (link above) goes into much more detail about its usage. I encourage you to, at least, download the Word document to understand the program in more detail.

However, this is a good start.

SQLCODEGEN.EXE is a command line program. It uses the input on the command-line to start the code generation process.

Call it like this:

sqlcodegen -tables Customer,Address -classtemplate FullAccess 
			-server homesqlserver -database TestDB1 

In this case, sqlcodegen will generate full CRUD for Customer and Address tables, creating classes called Customer and Address, respectively, in files called Customer.cs and Address.cs. It knows this from the -table argument.

The code will be patterned on a template named "FullAccess" as denoted by the -classtemplate argument. (The sqlcodegen.exe.config file specifies where the templates are located and the sources to use for the templates).

The server is named homesqlserver and the database to find the tables is called TestDB1, as indicated by the -server and -database arguments.

Points of Interest

SQLCODEGEN.EXE is a very flexible, easily configured program.

The program is driven by the command line input and configuration file data. It uses templates and "snippets" files as well as XML files to control the content of the output. The templates and snippet files are text files. You can easily change the templates and snippets to match your requirements by using any text editor.

In addition to the templates and snippets, SQLCODEGEN.EXE uses a few XML files for additional configuration. While I refer you to the Word documentation for more details on these files, I did want to bring your attention to these files by pointing out that these files exist. I encourage you to explore the program to see how you can modify the configuration for your needs.

One final note: I have exposed a couple of interfaces that allow you to extend the functionality of SQLCODEGEN.EXE. The interfaces are defined in the SQLCODEGENSUPPORT.DLL. One interface will allow you to extend SQLCODEGEN.EXE to work against different databases. Another allows you to customize some of the code generation so that the generated output matches the coding standards for yourself or your organization.

Final Note

Just one small note: While I do refer you to the Word document for more details, I do understand that the document is not totally complete. However, there is plenty of good information in the documentation to get you going. Along with the source code, and through contacting me, I am reasonably confident you will be able to use SQLCODEGEN.EXE immediately.

While I am not a huge fan of code generation, I do believe it has its place in software engineering. It is perfect for generating repetitive and mundane code, like CRUD (create, retrieve, update, delete) functionality. It can help reduce coding errors and save time for the fun stuff, like working on business requirements.

I know there's other tools out there that also do this, as well as others who've made their own code generation tools. But I like writing my own tools. And, I did not want to spend a significant amount of money or time learning commercially available code generation software.

So I came up with SQLCODEGEN.EXE to generate C# data access code.

As delivered, it only works for Microsoft SQL Server. However, as noted below and in the Word document, there are ways to make it work for other data sources as well.

Updates

  • 2007-11-13: I developed SQLCODEGEN.EXE against Microsoft SQL 2005. I know that system table schema for previous versions of Microsoft SQL differs so this tool, fresh from the zip file or a compile, may not work against earlier versions of Microsoft SQL. All is not lost however! You can implement your own version ITableInquiry interface, as demonstrated in the included example, in place of using the default implementation.
  • 2008-12-19: Updated source code only

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)

About the Author

mattraffel


Member

Occupation: Architect
Location: United States United States

Other popular Database articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 10 of 10 (Total in Forum: 10) (Refresh)FirstPrevNext
GeneralI Get The Error Pinmemberyehuda1:25 13 Apr '08  
GeneralRe: I Get The Error Pinmembermattraffel3:50 21 Apr '08  
QuestionNo Username and Password option Pinmembersides_dale15:54 24 Nov '07  
AnswerRe: No Username and Password option Pinmembermattraffel10:22 28 Nov '07  
GeneralClassProperty Class is missing in source project PinmemberAyyanar21:54 15 Oct '07  
AnswerRe: ClassProperty Class is missing in source project [modified] Pinmembermattraffel2:48 16 Oct '07  
GeneralRe: ClassProperty Class is missing in source project PinmemberAyyanar19:03 16 Oct '07  
AnswerRe: ClassProperty Class is missing in source project Pinmembermattraffel3:35 17 Oct '07  
GeneralnVarChar PinmemberDewey21:51 10 Oct '07  
GeneralRe: nVarChar Pinmembermattraffel3:35 11 Oct '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 19 Dec 2008
Editor: Deeksha Shenoy
Copyright 2007 by mattraffel
Everything else Copyright © CodeProject, 1999-2009
Web20 | Advertise on the Code Project