Hello community, I have a block of code i wish to place a try statment around. I basicaly want to catch the SQL statment in case it returns an item not found. Im fairly new to VB and have only used try catch statments during some tutorial material. please no flaming on the noobish layout and syntax.

Here is the code, can some one show me where i would but the try/catch??
VB Code:
  1. Private Sub Search_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCriteriaSearch.Click
  2.         Dim serialSelect As String = "equipment_serial_number"
  3.         Dim cfSelect As String = "equipment_cf_tag"
  4.         Dim sqlColumn As String
  5.         Dim searchCriteria As String
  6.  
  7.         If cboCriteria.SelectedIndex = 0 Then
  8.             sqlColumn = serialSelect
  9.         Else
  10.             sqlColumn = cfSelect
  11.         End If
  12.         searchCriteria = txtCriteriaSearch.Text.ToUpper
  13.  
  14.         Dim mySqlConnection As SqlConnection = New SqlConnection(getConnectionString)
  15.         Dim mySqlCommand As SqlCommand = New SqlCommand()
  16.         Dim mySqlReader As SqlDataReader
  17.         mySqlConnection.Open()
  18.         mySqlCommand.Connection = mySqlConnection
  19.         mySqlCommand.CommandText = ( _
  20.         "SELECT EQ_Equipment.equipment_serial_number, " & _
  21.         "EQ_Equipment.equipment_cf_tag, " & _
  22.         "EQ_Equipment.equipment_description, " & _
  23.         "EQ_Equipment.equipment_warranty, " & _
  24.         "EQ_Equipment.item_class_id, " & _
  25.         "EQ_Equipment.location_id, " & _
  26.         "EQ_Equipment.status_id, " & _
  27.         "EQ_Equipment.user_id " & _
  28.         "FROM EQ_Equipment " & _
  29.         "WHERE " & sqlColumn & " = '" & searchCriteria & "'")
  30.  
  31.         mySqlReader = mySqlCommand.ExecuteReader()
  32.         While mySqlReader.Read()
  33.             txtSerialNumber.Text = mySqlReader.GetString(0)
  34.             txtTag.Text = mySqlReader.GetString(1)
  35.             txtNotes.Text = mySqlReader.GetString(2)
  36.             dtpWarranty.Value = mySqlReader.GetDateTime(3)
  37.             cboClassType.SelectedValue = mySqlReader.GetInt32(4)
  38.             cboLocation.SelectedValue = mySqlReader.GetInt32(5)
  39.             cboItemStatus.SelectedValue = mySqlReader.GetInt32(6)
  40.             cboUserList.SelectedValue = mySqlReader.GetInt32(7)
  41.         End While
  42.  
  43.         mySqlConnection.Close()
  44.         variableUpdate()
  45.     End Sub