Click here to Skip to main content
15,881,813 members
Articles / Desktop Programming / Windows Forms
Article

Insert, Update, Delete & Search Values in MS Access 2003 with VB.NET 2005

Rate me:
Please Sign up or sign in to vote.
3.25/5 (14 votes)
9 Jun 2008CPOL 431.6K   11.7K   34   52
How to Insert, Update, Delete & Search Values in MS Access 2003 with VB.NET 2005

Download WithAccess - 143.91 KB

Shahzad Mahmood
MughalShahzad@gmail.com
Netsol Technologies Limited
Safari Villas,
Rawalpindi, Pakistan

Introduction

This article and sample covers that "How to Insert, Update, Delete and Search Values to/from MS Access database 2003 with VB.NET 2005", Although VB.NET 2005 gives lot more methodologies to do this same job but I find this more easier, simplest and understandable for a beginner.

Background

Learner must have little bit programming experience of VB.NET 2005 and MS Access 2003

Using the Code

Follow the steps:

  1. Create a VB.NET 2005 Windows Project,
  2. Place 3 Labels on form.
  3. Place 3 TextBoxes, Rename them txtAu_ID, txtAuthor, txtSearchResult
  4. Place 4 Buttons, Rename them btnInsert, btnUpdate, btnDelet, btnSearch
  5. Create MS Access Database "TestDB.mdb"
  6. Create a Table "Authors" with 2 fields "Au_ID" and "Author"

Copy and Pate the following code:

VB
Imports System.Data

Imports System.Data.OleDb 

Public Class Form1 

    Dim cnnOLEDB As New OleDbConnection

    Dim cmdOLEDB As New OleDbCommand
 
    Dim cmdInsert As New OleDbCommand

    Dim cmdUpdate As New OleDbCommand

    Dim cmdDelete As New OleDbCommand

    Dim strConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & 
        System.Environment.CurrentDirectory & "\TestDB.mdb" 

    Private Sub Form1_Load(ByVal sender As System.Object,
        ByVal e As System.EventArgs) Handles MyBase.Load 

        cnnOLEDB.ConnectionString = strConnectionString

        cnnOLEDB.Open()

    End Sub 

    Private Sub btnSearch_Click(ByVal sender As System.Object,
        ByVal e As System.EventArgs) Handles btnSearch.Click 

    txtAearchResult.Text = "" 

    Dim vSearch As String = InputBox("Enter Integer number to search name:") 

    If vSearch <> "" Then 

        cmdOLEDB.CommandText = "SELECT Au_ID,
            Author FROM Authors WHERE Au_ID=" & CInt(vSearch) 

        cmdOLEDB.Connection = cnnOLEDB

        Dim rdrOLEDB As OleDbDataReader = cmdOLEDB.ExecuteReader

        If rdrOLEDB.Read = True Then
        
        txtAearchResult.Text &= rdrOLEDB.Item(0).ToString & " " & 
            rdrOLEDB.Item(1).ToString

        rdrOLEDB.Close()

        Exit Sub

        Else

            MsgBox(rdrOLEDB.Close()

            "Record not found")

            Exit Sub 

        End If

    Else

        MsgBox("Enter search value.") 

        Exit Sub 

    End If 

    End Sub

    Private Sub btnInsert_Click(ByVal sender As System.Object,
        ByVal e As System.EventArgs) Handles btnInsert.Click 

    If txtAu_ID.Text <> "" And txtAuthor.Text <> "" Then 

        cmdInsert.CommandText = "INSERT INTO Authors (Au_ID, Author) VALUES (" & 
            xtAu_ID.Text & ", '" & txtAuthor.Text & "');" 

        'MsgBox(cmdInsert.CommandText)

         cmdInsert.CommandType = CommandType.Text

         cmdInsert.Connection = cnnOLEDB

         cmdInsert.ExecuteNonQuery()

         MsgBox(txtAu_ID.Text = "Record inserted.")"" 

         txtAuthor.Text = "" 

    Else 

        MsgBox("Enter the required values:" & 
            vbNewLine & "1. Au_ID" & vbNewLine & "2.Author")

    End If 

    cmdInsert.Dispose()

    End Sub

    Private Sub btnUpdate_Click(ByVal sender As System.Object,
        ByVal e As System.EventArgs) Handles btnUpdate.Click

    If txtAu_ID.Text <> "" And txtAuthor.Text <> "" Then

        cmdUpdate.CommandText = "UPDATE Authors SET Author = '" & txtAuthor.Text & "' 
        WHERE Au_ID = " & txtAu_ID.Text & ";" 

        'MsgBox(cmdUpdate.CommandText)

        cmdUpdate.CommandType = CommandType.Text

        cmdUpdate.Connection = cnnOLEDB

        cmdUpdate.ExecuteNonQuery()

        MsgBox(txtAu_ID.Text = "Record updated.")"" 

        txtAuthor.Text = "" 

    Else

        MsgBox("Enter the required values:" & vbNewLine & "1. Au_ID" & vbNewLine & 
            "2.Author")

    End If

    cmdUpdate.Dispose()

    End Sub

    Private Sub btnDelete_Click(ByVal sender As System.Object,
        ByVal e As System.EventArgs) Handles btnDelete.Click 

    If txtAu_ID.Text <> "" Then 

        cmdDelete.CommandText = "DELETE FROM Authors WHERE Au_ID = " &
            txtAu_ID.Text  & ";" 

        'MsgBox(cmdDelete.CommandText)

        cmdDelete.CommandType = CommandType.Text

        cmdDelete.Connection = cnnOLEDB

        cmdDelete.ExecuteNonQuery()

        MsgBox(txtAu_ID.Text = "Record deleted.")"" 

        txtAuthor.Text = "" 

        cmdDelete.Dispose()

    Else

        MsgBox("Enter the required values:" & vbNewLine & "1. Au_ID") 

    End If

    cmdUpdate.Dispose()

    End Sub

End Class

For further details send leave me a message on the messaged board below

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Pakistan Pakistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Hello Pin
Member 393160630-Oct-08 17:30
Member 393160630-Oct-08 17:30 
GeneralRe: Hello Pin
Mohamed Safi Samsudeen30-Oct-08 19:30
Mohamed Safi Samsudeen30-Oct-08 19:30 
GeneralRe: Hello Pin
Member 393160630-Oct-08 22:04
Member 393160630-Oct-08 22:04 
GeneralRe: Hello Pin
Mohamed Safi Samsudeen30-Oct-08 23:52
Mohamed Safi Samsudeen30-Oct-08 23:52 
GeneralHello sir, Pin
Mohamed Safi Samsudeen27-Oct-08 20:33
Mohamed Safi Samsudeen27-Oct-08 20:33 
GeneralRe: Hello sir, Pin
Member 393160627-Oct-08 20:56
Member 393160627-Oct-08 20:56 
GeneralHi Pin
Mohamed Safi Samsudeen23-Oct-08 2:25
Mohamed Safi Samsudeen23-Oct-08 2:25 
GeneralRe: Hi Pin
Member 393160623-Oct-08 19:07
Member 393160623-Oct-08 19:07 
GeneralRe: Hi Pin
Mohamed Safi Samsudeen25-Oct-08 3:39
Mohamed Safi Samsudeen25-Oct-08 3:39 
Generalsql Pin
Mohamed Safi Samsudeen21-Oct-08 8:55
Mohamed Safi Samsudeen21-Oct-08 8:55 
GeneralRe: sql Pin
Member 393160622-Oct-08 1:06
Member 393160622-Oct-08 1:06 
Generalsql injection Pin
janctil9-Jun-08 9:56
janctil9-Jun-08 9:56 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.