Skip to main content

Sample CRUD application in C# and MS SQL Server

For this example, we'll be creating a simple sales management for a ticketing office named ACheapSeat. The application allows buying of tickets for a particular event in a given venue. For this example, let's have tickets for three (3) venues: Cowboy Stadium Tickets, Ringling Brothers Circus Tickets, and Kyle Field Tickets.

First, create the database named acheapseat in MS SQL Server. (I'm using MS SQL Server 2005 Express edition).
Create the following tables:
1. Venues
    Id: int, PK, Auto-increment, not null
    Name: varchar(50), not null
2. Events
    Id:int, PK, Auto-increment, not null
    Description: varchar(50), not null
    DateTime: timestamp, not null
    VenueId: FK, int, not null
    Price: numeric
3. TicketSales
    Id: int, PK, Auto-increment, not null
    DateBought: timestamp, not null
    EventId: FK, int, not null
    QuantityBought: int


Now, we can start with our C# application. I'm using C# express 2008.
1. Create a new Windows Forms Application. Let's name the project: ACheapSeat

2. We'll be using just one form. The name of the initial form is Form1. Let's rename it to ACheapSeatForm. Change the text to "A Cheap Seat Ticket Sales Management"

3. Add a TabControl to the form. It should have 3 tabs: Sales, Venues, and Events (rename the tab into "tabMain"). Change the tab's anchor property to Top, Bottom, Left, Right.


4. Add a button to the lower right of the form. Name this button as btnClose and change its text to "Close". Change its anchor property to Bottom, Right

5. Go to the Venues tab and add a label, a textbox, a datagridview, and 3 buttons.
    label: name: lblVenueName, text: Venue Name
    textbox: name: txtVenueName
    datagridview: name: grdVenue
    button 1: name: btnAddVenue, text: Add
    button 2: name: btnSaveVenue, text: Save, Enabled: false
    button 3: name: btnDeleteVenue, text: Delete, Enabled: false

  • Add the following columns to the grid: Id, Name

 

    Change the DataPropertyName to the corresponding field in the database.

     Change the AllowUserToAddRows and AllowUserToDeleteRows properties of the grid to false

Also, set ReadOnly to True


6. Go to the code view of the form and add the following:
    using System.Data.SqlClient;

7. Add the following code to the constructor (the function that has the same name as its class):

            cn = new SqlConnection("Data Source=RIXX\\SQLExpress;Initial Catalog=acheapseat;Integrated Security=SSPI;");
          

     //Change the RIXX\\SQLExpress to the name of your server instance. Some may have just "localhost"

8. Let's add more codes:

  • Create a void function that will establish the connection to the database
        void OpenConnection()
        {
            if (cn.State == ConnectionState.Closed)
            {
                cn.Open();
            }
        }
  • Create a void function that will refresh the contents of the venue grid. 
        void RefreshVenue()
        {
            OpenConnection();
            SqlCommand cmd = new SqlCommand("Select Id, Name from Venues", cn);
            SqlDataAdapter adp = new SqlDataAdapter(cmd);
            DataTable dt = new DataTable();
            adp.Fill(dt);
            grdVenue.DataSource = dt;

        }



9. Go to form view and select the tab control. Look for the SelectedIndexChanged event and doubleclick on it..

10. Add the following switch statement:

            switch (tabMain.SelectedTab.Name)
            {
                case "tabSales": break;
                case "tabVenues":
                    RefreshVenue();  
                    break;
                case "tabEvents": break;
            }


      //This will re-populate the grid with the database values, every time the user clicks on a particular tab.

11. Go back to form view and double-click on the Add button, and add the following code:

            SqlCommand cmd = new SqlCommand(
                "Insert into Venues(Name) values ('" + txtVenueName.Text + "')", cn);
            cmd.ExecuteNonQuery();
            RefreshVenue();

      //This will add whatever text you type on the textbox to the database

12. Go back to form view and click on the grid. Look for the CellClick event and double-click on it.

13. Add the following code:
      txtVenueName.Text = grdVenue.CurrentRow.Cells["colVenueName"].Value.ToString();
      // this will put whatever text is selected from the grid, to the textbox.
14. Add the following codes also:
            btnAddVenue.Enabled = false;
            btnDeleteVenue.Enabled = true;
            btnSaveVenue.Enabled = true;

15. Go back to form view and double-click on Save and add the following codes:
            SqlCommand cmd = new SqlCommand(
                "Update Venues set Name='" + txtVenueName.Text + "' where Id=" +
                grdVenue.CurrentRow.Cells["colVenueId"].Value.ToString(), cn);

            cmd.ExecuteNonQuery();
            RefreshVenue();
            btnAddVenue.Enabled = true;
            btnDeleteVenue.Enabled = true;
            btnSaveVenue.Enabled = false;
            txtVenueName.Text = string.Empty;

16. You can also do the same with the Delete button:
            SqlCommand cmd = new SqlCommand(
                "Delete Venues where Id=" +
                grdVenue.CurrentRow.Cells["colVenueId"].Value.ToString(), cn);

            cmd.ExecuteNonQuery();
            RefreshVenue();
            btnAddVenue.Enabled = true;
            btnDeleteVenue.Enabled = true;
            btnSaveVenue.Enabled = false;
            txtVenueName.Text = string.Empty;


Repeat the steps with the other tabs and make sure that all fields are well represented.

Comments

Popular posts from this blog

How to register a business name

Attending business summits and conferences is a big help to those who belong to the quite "techy" (technological or technical) industry. Being a graduate of one, I had less knowledge in the field of entrepreneurship. Enrolling myself in business administration gave me quite the knowledge to be a part of the business world and thus improve my entrepreneurial skills. I now would like to share this information that I got familiar with (and I managed to get a copy of the entire process from the 6th Mindanao ICT Congress): How to Register a Business Name (in the Philippines) ----------------------------------------------------------------------------------------------- SINGLE PROPRIETORSHIP Applicant must secure 2 copies of registration form and pay Php 300.00 (rate may change) for single proprietorship registration processing fee. The registration shall be valid for five (5) years. A surcharge of Php 100.00 is imposed if renewal is filed beyond the three (3) month grace period, c

Adding a Footer to the DataGridView component

I have been searching for sites and forums that would give me a any hint on having a footer on the .net DataGridView control. It was frustrating. I found some, but not what I was looking for. I use windows forms. It would have been easier if I was into web. I decided to create one for myself. It's not complete, but it works with me. It needs improvement and I hope that some programmers who might pass through this blog will help me with it :D. Limitations: Cannot set Footer values during design time. Can sometimes hide a row when scrolled to the last item in the grid. What I did was just create a user control that inherits the DataGridView control and add a StatusStrip to act as the footer. public partial class MyDataGridView : DataGridView { public StatusStrip Footer { get { return (StatusStrip)this.Controls["Footer"]; } } private bool _footerVisible; [Browsable(false)] /// /// Sets or Gets the va

Using Firebird with ASP.net

In my previous post , I was able to connect a firebird 2.0 database to asp.net using controls. The next goal was to connect to a firebird database using the firebird.net engine and using the repeater control. I however, was able to use the firebird.net engine to connect to the firebird database but not to the repeater control. I used the html table tag. I've created a simple asp.net demo displaying the contents of a firebird database on page load. Here are the steps: 1. Things Needed: Firebird 2.0 Server Firebird 2.0 Client Visual Web Developer 2. In Visual Web Developer, create a new ASP.net Website (using C# as the programming language). The project will have a default page named Default.aspx. Make sure that the code is separate from the page (ex. Default.aspx.cs is separate from Default.aspx) 3. On the Website menu, click on Add Reference. 4. Select the Firebird - ADO.net 2.0 Data Provider and click Ok. 5. Add using FirebirdSql.Data.FirebirdClient; to the "using" sec