Mapping Objects to Relational Databases

Description

 
This article explains how you can map database tables to C# objects. In other words, The application generates C# Class files for each table in a relational database. I have used Mysql and ODBC.NET for this project. The application only supports MySQL right now. However, it is easy to port to other databases. I will do it for the second version of this application. How you can download MySQL and MySQL ODBC driver. if you browse the web page http://www.mysql.com, you will see that MyODBC 2.50.39 link on the right side of the screen. After that you have download ODBC driver, you should download MySQL 3.23.43 server, and install it in your Windows if you have Windows running on your computer.
 
MySQL can be downloaded from www.mysql.com.
 
After downloading and installation, you should configure the ODBC driver. Here is how you can do it. goto Control Panel, run DataSources(ODBC). While you are at USER DSN, click on the Add button, Then choose MySQL from the list click on the Finish button then you will see
 
 
Enter, Windows DSN Name as you wish.
 
MySQL Host is either a remote computer or local computer, If you have installed MySQL server to your computer, then choose the localhost.
 
MySQL Database Name: Before entering the name here, you should create a database in MySQL server and tables. I can recommend a software you can download from http://dbtools.vila.bol.com.br/
 
with this tool, you can create databases, tables, and so on. When you try to connect to the MySQL server, you can use the user name as root and password as just empty.
 
User: root
Password:
 
then click on the OK button, You are all set. if you have problems with the settings, just let me know.
 
This application supports
  1. Mapping attributes to columns: a class attribute will map to one column in a relational database.
  2. Mapping classes to tables: Classes map to tables.
So, how you can use this application. First of all, as I said before, It supports an Odbc connection, so you have to setup ODBC. You can name it as you want. Then click on the Get Tables button to receive tables from Database and you can see them in the tree view at the left. After that, Just Enter the Namespace that you want to put in the C# class files.
 
the Last thing is that you should enter the folder name that will have these C# class files.
 
When you click on Generate C# Class Files, it will create all C# files in a given folder.
 
 
You can add any datatype you want. therfore, it is going to be easy to port the application to other databases.
  1. private String FindDataType(String Type) {  
  2.      if (Type.IndexOf("varchar") != -1) {  
  3.           return "String";  
  4.      } else if (Type.IndexOf("datetime") != -1) {  
  5.           return "DateTime";  
  6.      } else if (Type.IndexOf("date") != -1) {  
  7.           return "DateTime";  
  8.      } else if (Type.IndexOf("decimal") != -1) {  
  9.           return "Decimal";  
  10.      } else if (Type.IndexOf("tinyint(4)") != -1) {  
  11.           return "boolean";  
  12.      } else if (Type.IndexOf("int") != -1) {  
  13.           return "int";  
  14.      } else if (Type.IndexOf("mediumint") != -1) {  
  15.           return "int";  
  16.      } else if (Type.IndexOf("timestamp") != -1) {  
  17.           return "DateTime";  
  18.      } else if (Type.IndexOf("bigint") != -1) {  
  19.           return "Int64";  
  20.      } else if (Type.IndexOf("float") != -1) {  
  21.           return "float";  
  22.      } else if (Type.IndexOf("tinyblob") != -1) {  
  23.           return "String";  
  24.      } else if (Type.IndexOf("tinytext") != -1) {  
  25.           return "String";  
  26.      } else if (Type.IndexOf("text") != -1) {  
  27.           return "String";  
  28.      } else if (Type.IndexOf("mediumblob") != -1) {  
  29.           return "String";  
  30.      } else if (Type.IndexOf("mediumtext") != -1) {  
  31.           return "String";  
  32.      } else if (Type.IndexOf("longblob") != -1) {  
  33.           return "String";  
  34.      } else if (Type.IndexOf("longtext") != -1) {  
  35.           return "String";  
  36.      }  
  37.      // Source Code End  


Similar Articles