I have the following code. When I add a new row, it adds it to the dataset in memory but never updates the database on the hard drive. What am I doing wrong?

VB Code:
  1. myCon = New SqlConnection("Data Source=.\SQLEXPRESS..........)
  2. myDA = New SqlDataAdapter("SELECT * FROM Rescue", myCon)
  3. myDA.TableMappings.Add("Table", "Rescue")
  4. myDS = New DataSet
  5. myDA.Fill(myDS)
  6.  
  7. Dim myRow As DataRow = myDS.Tables("Rescue").NewRow
  8. myRow.Item("CallNum") = Me.TxtCallNum.Text
  9. myRow.Item("TimeCall") = Me.TxtTimeCall.Text
  10. myDS.Tables("Rescue").Rows.Add(myRow)
  11. myDA.Update(myDS)