i m using the following code without errors but the data in the table remains the same what i m doing wrong

VB Code:
  1. da = New OleDbDataAdapter("SELECT * FROM t", cnNew)
  2.         ds = New DataSet("t")
  3.         da.Fill(ds, "t")
  4.         For Each drRow In ds.Tables.Item("t").Rows
  5.             drRow.Item("LastN") = "test"
  6.         Next
  7.         ds.AcceptChanges()
  8.         Try
  9.             da.Update(ds, "t")
  10.         Catch ex As Exception
  11.             Trace.WriteLine(ex.Message)
  12.         End Try