I have an Update Stored Procedure on SQL Server and I just simply want to call a Sub that "fires" off that SP.
VB Code:
  1. Sub UpdateTableWithSP()
  2. sqlConn.Open() 'connection declared globally
  3.  
  4. Dim sqlSP As New SqlCommand("MTFE_UpdateTable")
  5.  
  6. sqlSP.Connection = sqlConn
  7. sqlSP.CommandType = CommandType.StoredProcedure
  8.  
  9. sqlSP.ExecuteReader()
  10.  
  11. sqlConn.Close()
  12. End Sub
This doesn't seem right, how exactly is this supposed to be coded?

Thanks!