Click here to Skip to main content
Click here to Skip to main content

MySQL 5 C# sample code using ObjectDataSources

By , 15 May 2006
 

Sample Image

Introduction

I created this example because I could not find a simple explanation for using MySQL 5 with ObjectDataSources in ASP.NET 2.0.

Let me say, I am really impressed with MySQL. I was able to install it easily on my Windows XP machine and get it running in about an hour. I am a long time MS SQL user, and was very frustrated with trying to use Oracle and Firebird. I realize, the problem is that I am spoiled from MS SQL Server, but hey I'm busy and I like easy to use tools :)

If you're getting started with MySQL and ASP.NET, then I recommend these steps:

  1. Go to the MySQL website, download and install “Current Release (recommended).
  2. Download and install: MySQL Administrator (to administer your MySQL server, the first download just installs only the server).
  3. Download and install: Connector/Net 1.0 (you need this to get your ASP.NET pages to talk to your MySQL server).
  4. You can also download: MySQL Query Browser – (a graphical client to work with your MySQL databases and run queries).
  5. Read and follow this guide: A Step-by-Step Guide to Using MySQL with ASP.NET.

Using the code

To install the code:

  1. You must have MySQL 5 up and running.
  2. Install MySQL Connector/Net 1.0.
  3. Create a MySQL 5 database named Test.
  4. Create a table in that database called Message:
    CREATE TABLE test.message (
    
        Entry_ID INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
        Name VARCHAR(45),
        Email VARCHAR(45),
        Message VARCHAR(200),
        PRIMARY KEY (Entry_ID)
        )
        AUTO_INCREMENT=32
        CHARACTER SET latin1 COLLATE latin1_swedish_ci;
  5. Create these four MySQL stored procedures in the Test database:
    PROCEDURE `test`.`DeleteMessage`(IN param1 INT)
    BEGIN
    Delete From test.message
    WHERE Entry_ID = param1;
    END
    PROCEDURE `test`.`InsertMessage`(IN param1 VARCHAR(50), IN param2 
        VARCHAR(50), IN param3 VARCHAR(200))
    BEGIN
    INSERT INTO message(Name, Email, Message)
    VALUES(param1,param2,param3);
    END
    PROCEDURE `test`.`ShowAll`()
    BEGIN
    SELECT 
      message.Entry_ID,
      message.Name, 
      message.Email, 
      message.Message
    FROM
      test.message;
    END
    PROCEDURE `test`.`UpdateMessage`(IN paramkey INT, IN param1 VARCHAR(50), 
        IN param2 VARCHAR(50), IN param3 VARCHAR(200))
    BEGIN
    UPDATE    message
    SET              Name = param1, Email = param2, Message = param3
    WHERE     (message.Entry_ID = paramkey);
    END
  6. Unzip "MySQL" and configure IIS to point to it. Make sure you configure the web server to use ASP.NET 2.0.
  7. Open "web.config" and change the line:
    <add name="MySQLConnectionString" connectionString="server=localhost; 
       user id=myuser; password=mypass; database=test; pooling=false;" 
       providerName="MySql.Data.MySqlClient"/>

    to connect to your MySQL database.

  8. Browse to the default.aspx page through IIS.

This is the class that uses Generics to supply the data that is consumed by the ObjectDataSource control:

using System;
using System.Collections.Generic;
using System.Data;
using MySql.Data.MySqlClient;
using System.Configuration;
using System.ComponentModel;

[DataObject(true)]
public static class MessagesDB
{
    private static string GetConnectionString()
    {
        return ConfigurationManager.ConnectionStrings
        ["MySQLConnectionString"].ConnectionString;
    }

    [DataObjectMethod(DataObjectMethodType.Select)]
    public static List<MessageItem> GetMessages()
    {
        MySqlCommand cmd = new MySqlCommand("ShowAll", 
                           new MySqlConnection(GetConnectionString()));
        cmd.CommandType = CommandType.StoredProcedure;
        cmd.Connection.Open();
        MySqlDataReader dr = 
           cmd.ExecuteReader(CommandBehavior.CloseConnection);

        List<MessageItem> MessageItemlist = new List<MessageItem>();
        while (dr.Read())
        {
            MessageItem MessageItem = new MessageItem();
            MessageItem.Entry_ID = Convert.ToInt32(dr["Entry_ID"]);
            MessageItem.Message = Convert.ToString(dr["Message"]);
            MessageItem.Name = Convert.ToString(dr["Name"]);
            MessageItem.Email = Convert.ToString(dr["Email"]);
            MessageItemlist.Add(MessageItem);
        }
        dr.Close();
        return MessageItemlist;
    }

    [DataObjectMethod(DataObjectMethodType.Insert)]
    public static void InsertMessage(MessageItem MessageItem)
    {
        MySqlCommand cmd = new MySqlCommand("InsertMessage", 
                           new MySqlConnection(GetConnectionString()));
        cmd.CommandType = CommandType.StoredProcedure;
        cmd.Parameters.Add(new MySqlParameter("param1", MessageItem.Name));
        cmd.Parameters.Add(new MySqlParameter("param2", MessageItem.Email));
        cmd.Parameters.Add(new MySqlParameter("param3", MessageItem.Message));
        cmd.Connection.Open();
        cmd.ExecuteNonQuery();
        cmd.Connection.Close();
    }

    [DataObjectMethod(DataObjectMethodType.Update)]
    public static int UpdateMessage(MessageItem MessageItem)
    {
        MySqlCommand cmd = new MySqlCommand("UpdateMessage", 
                           new MySqlConnection(GetConnectionString()));
        cmd.CommandType = CommandType.StoredProcedure;
        cmd.Parameters.Add(new MySqlParameter("paramkey", MessageItem.Entry_ID));
        cmd.Parameters.Add(new MySqlParameter("param1", MessageItem.Name));
        cmd.Parameters.Add(new MySqlParameter("param2", MessageItem.Email));
        cmd.Parameters.Add(new MySqlParameter("param3", MessageItem.Message));
        cmd.Connection.Open();
        int i = cmd.ExecuteNonQuery();
        cmd.Connection.Close();
        return i;
    }

    [DataObjectMethod(DataObjectMethodType.Delete)]
    public static int DeleteMessage(MessageItem MessageItem)
    {
        MySqlCommand cmd = new MySqlCommand("DeleteMessage", 
                new MySqlConnection(GetConnectionString()));
        cmd.CommandType = CommandType.StoredProcedure;
        cmd.Parameters.Add(new MySqlParameter("param1", MessageItem.Entry_ID));
        cmd.Connection.Open();
        int i = cmd.ExecuteNonQuery();
        cmd.Connection.Close();
        return i;
    }

The class above uses the class "MessageItem" to pass the parameters to and from the ObjectDataSource control:

using System;

public class MessageItem
{
    int _Entry_ID;
    string _Message;
    string _Name;
    string _Email;

    public MessageItem()
    {
    }

    public int Entry_ID
    {
        get
        {
        return _Entry_ID;
        }
        set
        {
        _Entry_ID = value;
        }
    }

    public string Message
    {
        get
        {
            return _Message;
        }
        set
        {
            _Message = value;
        }
    }

    public string Name
    {
        get
        {
            return _Name;
        }
        set
        {
            _Name = value;
        }
    }

    public string Email
    {
        get
        {
            return _Email;
        }
        set
        {
            _Email = value;
        }
    }
}

This is the .aspx file that contains the ObjectDataSource control as well as a GridView for editing data and a DetailsView for inserting a record:

<asp:ObjectDataSource ID="ObjectDataSource1" runat="server"
   TypeName="MessagesDB" OldValuesParameterFormatString="original_{0}" 
   SelectMethod="GetMessages" DataObjectTypeName="MessageItem" 
   DeleteMethod="DeleteMessage" InsertMethod="InsertMessage" 
   UpdateMethod="UpdateMessage">
</asp:ObjectDataSource>
<br />
<asp:GridView ID="GridView1" runat="server" 
      AutoGenerateColumns="False" 
      DataSourceID="ObjectDataSource1" 
      DataKeyNames="Entry_ID">
 <Columns>
   <asp:BoundField DataField="Entry_ID" HeaderText="Entry_ID" 
           SortExpression="Entry_ID" Visible="False" />
   <asp:CommandField ShowEditButton="True" />
   <asp:CommandField ShowDeleteButton="True" />
   <asp:BoundField DataField="Name" 
         HeaderText="Name" SortExpression="Name" />
   <asp:BoundField DataField="Email" 
         HeaderText="Email" SortExpression="Email" />
   <asp:BoundField DataField="Message" 
         HeaderText="Message" SortExpression="Message" />
 </Columns>
</asp:GridView>
<br />
<strong><span style="text-decoration: underline">
      Insert New Record:</span></strong><br />

<asp:DetailsView ID="DetailsView1" runat="server" 
    AutoGenerateRows="False" BorderStyle="None"
    CellSpacing="5" DataSourceID="ObjectDataSource1" 
    DefaultMode="Insert" GridLines="None"
    Height="50px" Width="300px">
  <Fields>
    <asp:BoundField DataField="Name" HeaderText="Name" />
    <asp:BoundField DataField="Email" HeaderText="Email" />
    <asp:BoundField DataField="Message" HeaderText="Message" />
    <asp:CommandField ButtonType="Button" 
         ShowInsertButton="True" ShowCancelButton="False" />
  </Fields>
</asp:DetailsView>

Note

The assembly "MySql.Data.dll" is in the "/bin" directory so the "MySql.Data.MySqlClient" will work.

I hope this helps!

License

This article, along with any associated source code and files, is licensed under The BSD License

About the Author

defwebserver
Software Developer (Senior) http://ADefWebserver.com
United States United States
Member
Michael Washington is a Microsoft Silverlight MVP. He is a Silverlight developer and an ASP.NET, C#, and Visual Basic programmer.
 
He is a DotNetNuke Core member and has been involved with DotNetNuke for over 4 years. He is the Co-Author of Building Websites with DotNetNuke (4 and 5).
 
He is one of the founding members of The Open Light Group (http://openlightgroup.net).
 
He is the founder of http://LightSwitchHelpWebsite.com
 
He has a son, Zachary and resides in Los Angeles with his wife Valerie.

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.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questionthanks Pinmemberemperatorali2 Nov '12 - 20:24 
GeneralMy vote of 5 PinmemberMember 774668418 Apr '12 - 13:06 
QuestionThank u Pinmembersaeedaly16 Apr '12 - 21:01 
Generalthank for thius Article Pinmemberfresherincode23 Feb '12 - 2:08 
GeneralRe: thank for thius Article Pinmemberdefwebserver23 Feb '12 - 2:11 
QuestionHow to connect to a remote MySQL server using a C# application. Pinmemberhosseinhaddad25 Oct '11 - 22:58 
Questionnot getting the concept Pinmemberabdul123123117 Oct '11 - 23:53 
AnswerRe: not getting the concept Pinmvpdefwebserver18 Oct '11 - 2:21 
GeneralBetter updated example with use of DataList and GridView Pinmembersimpa14 Mar '11 - 1:21 
GeneralRe: Better updated example with use of DataList and GridView Pinmvpdefwebserver3 Jul '11 - 14:08 
GeneralRemote MySql Server Connection with C# and .NET Compact Framework 2.0 PinmemberAsif Basha8 Sep '09 - 21:17 
GeneralRe: Remote MySql Server Connection with C# and .NET Compact Framework 2.0 Pinmemberdefwebserver9 Sep '09 - 2:02 
GeneralThanks Pinmembermulta27 Mar '09 - 15:02 
Generalconnecting VB with Mysql Pinmemberboris1116 Mar '09 - 19:13 
QuestionCan't Create Procedure, need help Pinmemberzie19866 Jan '09 - 23:08 
QuestionInsert, delete and updated without stored proceduces in database? PinmemberHoh Tat Heng4 Dec '08 - 21:25 
AnswerRe: Insert, delete and updated without stored proceduces in database? Pinmemberdefwebserver5 Dec '08 - 2:21 
GeneralHelp from SP Pinmembernjuniorba17 Oct '08 - 6:48 
GeneralRe: Help from SP Pinmemberdefwebserver17 Oct '08 - 7:09 
Generalwhank for help PinmemberRavipabbathi2 Jun '08 - 20:38 
QuestionDataObjectMethod Select by record ID Pinmemberpunt3r22 May '08 - 14:09 
AnswerRe: DataObjectMethod Select by record ID Pinmemberdefwebserver22 May '08 - 15:18 
GeneralRe: DataObjectMethod Select by record ID Pinmemberpunt3r22 May '08 - 16:13 
GeneralRe: DataObjectMethod Select by record ID Pinmemberdefwebserver22 May '08 - 17:04 
GeneralRe: DataObjectMethod Select by record ID Pinmemberpunt3r22 May '08 - 17:45 
GeneralRe: DataObjectMethod Select by record ID Pinmemberpunt3r22 May '08 - 18:52 
GeneralRe: DataObjectMethod Select by record ID Pinmemberdefwebserver23 May '08 - 2:01 
GeneralRe: DataObjectMethod Select by record ID Pinmemberpunt3r23 May '08 - 2:21 
GeneralC# Form communicate with MySql Database Pinmemberbdiepeveen13 Apr '08 - 21:10 
QuestionGrid View - Online Exam Application. [modified] PinmemberAshok H30 Aug '07 - 19:04 
QuestionProblem by assigning data into the Detailsview item for inserting new records PinmemberNewIn1236 Aug '07 - 22:38 
GeneralThanks PinmemberYulianto.18 Jul '07 - 16:55 
GeneralGeneral advice on v. 5+ &amp; 1.0.7 + connectors Pinmemberplemon15 Feb '07 - 10:33 
Question#42000SELECT command denied [modified] PinmemberRex102426 Sep '06 - 2:44 
QuestionRe: #42000SELECT command denied Pinmemberdylf20 Apr '07 - 9:55 
AnswerRe: #42000SELECT command denied Pinmemberyrodrigu19 Oct '08 - 8:30 
QuestionHow to build a Selectable Master GridView with a Details DetailView page based on your example? PinmemberPerth_shan4 Sep '06 - 22:13 
AnswerRe: How to build a Selectable Master GridView with a Details DetailView page based on your example? PinmemberPerth_shan6 Sep '06 - 20:00 
GeneralConnection to MySQL PinmemberDewald Troskie7 Aug '06 - 10:32 
GeneralConnectDB MySQL4.1 PinmemberHoanglkKHTN19 Jul '06 - 22:04 
GeneralRe: ConnectDB MySQL4.1 Pinmembermardc28 Dec '06 - 6:42 
GeneralRe: ConnectDB MySQL4.1 PinmemberMember 162415013 Apr '08 - 9:14 
Generalnulls in datareader Pinmemberpkellner1 Jun '06 - 14:52 
GeneralRe: nulls in datareader Pinmemberdefwebserver1 Jun '06 - 15:12 
GeneralNice article, I moved from MySQL to MS-SQL though [modified] Pinmemberneilio28 May '06 - 7:30 
GeneralRe: Nice article, I moved from MySQL to MS-SQL though Pinmembercoolg4447 Apr '07 - 6:25 
GeneralRe: Nice article, I moved from MySQL to MS-SQL though Pinmemberneilio7 Apr '07 - 6:51 
GeneralExcellent Article PinmemberDewald Troskie26 May '06 - 2:43 
GeneralHelped a lot :) Pinmemberplintus16 May '06 - 5:55 
GeneralVery good... PinmemberBacos16 May '06 - 2:23 

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
Web02 | 2.6.130516.1 | Last Updated 15 May 2006
Article Copyright 2006 by defwebserver
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid