Click here to Skip to main content
6,595,854 members and growing! (18,310 online)
Email Password   helpLost your password?
Database » Database » Other databases     Intermediate

MySQL Schema in C#

By Rajib Bahar

An article on HOW-TO grab MySQL schema in C#. This program utilizes ODBC API.
C#, Windows, .NET 1.1, MySQL, VS.NET2003, DBA, Dev
Posted:18 Jan 2004
Views:121,136
Bookmarked:53 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
13 votes for this article.
Popularity: 4.54 Rating: 4.07 out of 5

1

2
3 votes, 23.1%
3
2 votes, 15.4%
4
8 votes, 61.5%
5

Main Screen

Figure 1.0: Screenshot of MySQL Utility.

Introduction

This article covers how to talk to MySQL database and extract the schema from it.

Background

As many of you know, MySQL is an open source database. It is free for non-commercial purposes. This article would be helpful for anybody doing development in MySQL and C#. What is the motivation behind this utility? Well, an application could crash in the middle of database activities. Often, these databases may not reside on the same site as your development/testing machine. We need a utility that would help us get a snapshot of the database at client site. If you have an utility that would capture the state of the client database, then, you can load it in your testing machine. The idea is to reproduce the situation your client faced. That way you can address any undiscovered issues.

Functionality Supported

  • Saving Schema as Text
  • Viewing Schema
  • Viewing Entire Database

Required Tools

  • ODBC.NET Data Provider from Microsoft
  • MySQL Database
  • MySQL ODBC Connector

Using the code

First, add a reference to Microsoft ODBC. Then use the using microsoft.odbc statement to tell it that you want to you MS ODBC. In short, OdbcConnection will be used to open connection, OdbcCommand to execute queries, and OdbcDataReader to read the resulting row set. The code shown below documents each step. You will notice, it runs the MySQL specific command SHOW TABLES to get the list of tables. Then it runs another query based on that particular table, SHOW COLUMNS IN CURRENT_TABLE. This is all the code does.

The Code

/*/////////////////////////////////////////////////////////////////////////
//
@@  Function:
@f    ::PrepareSchema
//
@@  Description:
@d    when this is called the widget is updated and everything
//    about this database and tables are displayed  
//
@@  Type:
@t    public 
//
@@  Arguments:
//    none.
@@  Returns:
@r    void
//
@@  Preconditions:
@c    Provided that the GUI is running and DB Connection is made.
//
@@  Postconditions:
@o    DB schema displayed  
//
@@  References:
@e    Query MySql with C#. 
//
/////////////////////////////////////////////////////////////////////////*/

public void PrepareSchema()
{                                
    // create the connection object by setting the DSN                

    OdbcConnection ocConnection = new OdbcConnection("DSN="+ strDSN);
    
    // second connection is created so we could make 

    // queries while executing one

    OdbcConnection ocConnection2 = new OdbcConnection("DSN="+ strDSN);
    
    // this will open up both connections

    ocConnection.Open();
    ocConnection2.Open();
    
    // declare the commands for each table and column            

    OdbcCommand ocTableCommand;
    OdbcCommand ocColumnCommand;

    // create a command object. this will execute SHOW TABLES

    // query. In mysql, it shows all of the tables contained in

    // the database in use.

    ocTableCommand = new OdbcCommand("SHOW TABLES", ocConnection);
    
    // declare reader objects for tables and columns

    OdbcDataReader odrTableReader;
    OdbcDataReader odrColumnReader;
    
    // queries that return result set are executed by ExecuteReader()

    // If you are to run queries like insert, update, delete then

    // you would invoke them by using ExecuteNonQuery() 

    odrTableReader = ocTableCommand.ExecuteReader();
    
    // place create db statement in rich text box

    rchtxtSchema.Text += "CREATE DATABASE ";
    rchtxtSchema.Text += ocConnection.Database;
    rchtxtSchema.Text += ";\r\n\r\n";
    
    rchtxtSchema.Text += "USE DATABASE ";
    rchtxtSchema.Text += ocConnection.Database;
    rchtxtSchema.Text += ";\r\n\r\n";
    
    string strTable      = ""; 
    string strColumnName = "";
    string strColumnType = "";  
    string strColumnNull = "";   
    string strColumnPKey = "";  
    string strColumnDflt = "";  
    string strColumnExtr = "";  
    
    // reader the set of tables

    while(odrTableReader.Read()) 
    {           
        // here we are expecting rows with only 1 column 

        // containing the table name. that's why explcity

        // call GetString() at 0th index  

        strTable = odrTableReader.GetString(0);  
               
        rchtxtSchema.Text += "CREATE TABLE "; 
        rchtxtSchema.Text += strTable; 
        rchtxtSchema.Text += "\r\n(\r\n";
        
        // build up the command for each table

        ocColumnCommand = new OdbcCommand("SHOW COLUMNS IN " + 
          strTable, ocConnection2);
        
        // run the query

        odrColumnReader = ocColumnCommand.ExecuteReader();
        
        // reading the set of columsn

        while(odrColumnReader.Read()) 
        {         
            // This query returns the name of column, Type,

            // wherther it's Null, whether it's primary Key,

            // the default value, and extra info such as 

            // whether it's autoincrement or not           

            strColumnName = odrColumnReader.GetString(0);
            strColumnType = odrColumnReader.GetString(1); 
            strColumnNull = odrColumnReader.GetString(2);  
            strColumnPKey = odrColumnReader.GetString(3);
            //strColumnDflt = odrColumnReader.GetString(4);

            strColumnExtr = odrColumnReader.GetString(5);
            
            if (!strColumnNull.Equals("YES"))
                strColumnNull = " NOT NULL ";
            else
                strColumnNull = "";
                
            if (strColumnPKey.Equals("PRI"))
                strColumnPKey = " PRIMARY KEY ";
            
            //this.rchtxtSchema.Text += "\n";

            rchtxtSchema.Text += " ";
            rchtxtSchema.Text += strColumnName;
            rchtxtSchema.Text += " ";         
            rchtxtSchema.Text += strColumnType; 
            rchtxtSchema.Text += strColumnPKey; 
            rchtxtSchema.Text += strColumnNull;
            rchtxtSchema.Text += ",";                                 
            rchtxtSchema.Text += "\r\n";   
                    
        }
        
        rchtxtSchema.Text = this.rchtxtSchema.Text.Substring(0, 
            this.rchtxtSchema.Text.Length-3);                     
        rchtxtSchema.Text += "\r\n);\r\n\r\n";   
         
        // free up the reader object

        odrColumnReader.Close();
    }
    
    // close the reader    

    odrTableReader.Close();
    
    // disconnect

    ocConnection.Close(); 
    ocConnection2.Close();                      
}

Points of Interest

Initially, I kept going back and forth from ODBC, ADODB and OLEDB to implement this. According to MySQL, it is not safe to use OLEDB. There was no mention of how to utilize OLEDB to perform simple database tasks. At the end, it was decided doing this would be very simple in ODBC. You have probably noticed that I used built-in commands (i.e. show tables) that the specific DB provider uses. I am definitely open to any suggestions or working examples of standards that work with MySQL.

HOW-TO use this Demo

Saving Schema

First, click on Select the Target Database. This should produce the dialog box showing the list of system as well as user DSNs.

DSN Dialog

Figure 2.0 - Depicts the DSN dialog form.

Now, click on Save Schema File As and select where you wish to save the file.

File Save Dialog

Figure 3.0 - Depicts the File Save dialog.

Next, make sure Save Schema is checked. Then click on Run.

Operation Status

Figure 4.0 - Depicts the status of operation. In this example, the program successfully wrote C:\s01user38_schema.txt.

Viewing Schema

First, uncheck Save Schema and then check View Schema. It should produce the output as depicted in figure 5.0

Schema View

Figure 5.0 - Depicts the schema of s01user38.

Viewing Database

Now, click on View Database in Grid and press Run.

Database in Grid

Figure 6.0 - Depicts the result of the query. It will show + initially. You have to click on it to expand all. Then it will show the tables as shown in this graphic. Then click on each blue link to see the rowset they contain.

Credits

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

About the Author

Rajib Bahar


Member
My personal/quasi-work blog:
http://www.rajib-bahar.com
http://www.icdotnet.com
http://www.icsql.com

YouTube Vlogs:
http://www.youtube.com/icsql - sql tutorials in video
http://www.youtube.com/rajib2k5 - my random vlog on art and other stuff outside of the geek world... Smile
Occupation: Database Developer
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 20 of 20 (Total in Forum: 20) (Refresh)FirstPrevNext
GeneralSHOW CREATE TABLE [modified] Pinmemberelbow_2:51 26 Oct '07  
QuestionMySQL table schema UNIQUE KEY? Pinmembernobl23:59 9 Apr '07  
Generalfiles are corrupted? Pinmemberhunter1448:37 4 Jan '06  
GeneralRe: files are corrupted? PinmemberAbdul (Rajib) Bahar14:57 11 Jan '06  
Generalneed help in .net with oracle database Pinmemberydderf222:06 22 Sep '04  
GeneralOLEDB connectivity with mySql. PinsussExtremist20046:07 2 Apr '04  
GeneralRe: OLEDB connectivity with mySql. PinmemberAbdul (Rajib) Bahar7:46 2 Apr '04  
GeneralUpdate changes in the grid to the MySQL DB Pinmemberms++7:54 29 Jan '04  
GeneralRe: Update changes in the grid to the MySQL DB PinmemberAbdul (Rajib) Bahar12:34 29 Jan '04  
GeneralRe: Update changes in the grid to the MySQL DB PinmemberM Saad++15:50 29 Jan '04  
GeneralRe: Update changes in the grid to the MySQL DB Pinmemberdenise83840516:42 8 Sep '04  
GeneralComments PinmemberDaniel Fisher (lennybacon)5:10 22 Jan '04  
GeneralRe: Comments PinmemberAbdul (Rajib) Bahar6:37 22 Jan '04  
GeneralRe: Comments PinmemberDaniel Fisher (lennybacon)8:19 22 Jan '04  
Generalwhy not make the dsn from the program too PinmemberPrabhdeep Singh4:49 21 Jan '04  
GeneralRe: why not make the dsn from the program too PinmemberAbdul (Rajib) Bahar9:17 21 Jan '04  
General.Net MySQL ADO.Net PinmemberFruitBatInShades1:53 19 Jan '04  
Generalbytefx + suggestion Pinmemberdog_spawn7:37 19 Jan '04  
GeneralRe: bytefx + suggestion PinmemberAbdul (Rajib) Bahar8:00 19 Jan '04  
GeneralRe: bytefx + suggestion Pinmember ThatsAlok3:43 18 Mar '08  

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

PermaLink | Privacy | Terms of Use
Last Updated: 18 Jan 2004
Editor: Smitha Vijayan
Copyright 2004 by Rajib Bahar
Everything else Copyright © CodeProject, 1999-2009
Web15 | Advertise on the Code Project