Insert Data Into Access Database and Retrieve Them Into DropDownList in ASP.Net

Sometimes we cannot use SQL Server or MySQL with our application because of server problems and data traffic errors in various servers. In that case, if you use Access for the database for your application or web form, it will be less complicated for your application and will reduce server error problems. So, I will show you how to retrieve data and process it by accessing the database with an ASP.NET application. If you use an Access database, there will be no need to install a database engine into another computer to use your application. If there is Microsoft Office installed then you will get no error and can work smoothly thereafter.

First of all, you need to be familiar with Access databases. The process is pretty straight forward. Open your Microsoft Access, create a blank database and name it.

create a blank database

Right-click on the table and click on design view. Here you can define the column name and data type of each column. You can also change the field size. And obviously you can specify whether it is a primary key or not.

table and click on design view

Now go to Visual Studio. Create an empty webform and make a GUI as in the following.

GUI

We will add some data into the Access database and will insert the data into a DropDownList. First of all, we need to be familiar with the Access database connection string. The connection string will be like the following:

  1. connection.ConnectionString = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=(location of the file);  
  2. Persist Security Info=False;"; 

The location is the following: C:\Documents\database.accdb.

For using the Access database, you need to import the OLEDB package of ADO.NET. So, don't forget to write using System.Data.OleDb;

The queries are nearly the same as SQL Server. If we click on the button, then the data will be inserted into the table of the database and that data from the column will be automatically inserted into the DropDownList using OleDbDataReader.

  1. protected void Button1_Click(object sender, EventArgs e)  
  2. {  
  3.    try  
  4.    {  
  5.       connection.Open();  
  6.       string command = "insert into pracTable(name) values('" + TextBox1.Text + "') ";  
  7.       OleDbCommand cmdd = new OleDbCommand(command, connection);  
  8.       cmdd.ExecuteNonQuery();  
  9.       Label1.Text = "Data inserted";  
  10.    }  
  11.    catch (Exception exp)  
  12.    { }  
  13.    finally  
  14.    {  
  15.       connection.Close();  
  16.    }  

And in the page load function, we will initialize an OleDbDataReader. Then we will make a loop for retrieving the data from that column (name) and insert them to the dropdown list.

  1. if (!IsPostBack)  
  2. {  
  3.    OleDbDataReader myReader;  
  4.    string command2 = "select * from pracTable";  
  5.    OleDbCommand cmd2 = new OleDbCommand(command2, connection);  
  6.    myReader = cmd2.ExecuteReader();  
  7.    while (myReader.Read())  
  8.    {  
  9.       string sName = myReader.GetString(0);  
  10.       Label1.Text = sName;  
  11.       DropDownList1.Items.Add(sName);  
  12.    }  

The process is pretty straight forward. I am giving the code and the database. Please remember that if you want to run this on your machine, provide your specific database path into the connection string.

Up Next
    Ebook Download
    View all
    Learn
    View all