in my list view i have a checkbox how can i put the one that the user check in the list view to the database

VB Code:
  1. If LV1.ListItems.Count - 1 > -1 Then
  2.                
  3.                 ItemCount = -1
  4.                 For Each ls In LV1.ListItems
  5.                     If ls.Checked = True Then
  6.                         ItemCount = ItemCount + 1
  7.                     End If
  8.                 Next
  9.                
  10.                 ReDim AccessTitle(ItemCount)
  11.                
  12.                i = 0
  13.                For Each ls In LV1.ListItems
  14.                
  15.                     If ls.Checked = True Then
  16.                    
  17.                         AccessTitle(i) = ls.Text
  18.                         i = i + 1
  19.                     End If
  20.                 Next
  21.     End If
  22.    
  23. End Sub
  24.  
  25. 'Private Sub cmbType_Click()
  26. '
  27. '    If cmbType.Text = sAdministratortitle Then
  28. '
  29. '        For Each ls In LV1.ListItems
  30. '            If ls.SubItems(1) = sAdministratortitle Then
  31. '                ls.Checked = True
  32. '            End If
  33. '        Next
  34. '
  35. '
  36. '    ElseIf cmbType.Text = sEncoderTitle Then
  37. '
  38. '        For Each ls In LV1.ListItems
  39. '            If ls.SubItems(1) = sAdministratortitle Then
  40. '                ls.Checked = False
  41. '            End If
  42. '        Next
  43. '
  44. '    End If