Code:
da = New OdbcDataAdapter("select * from phone order by nm", cn)
ds = New DataSet("phone")
da.FillSchema(ds, SchemaType.Source, "phone")
da.Fill(ds)
Dim tblAuthors As DataTable
tblAuthors = ds.Tables("phone")
Dim drCurrent As DataRow
drCurrent = tblAuthors.Rows(0)
drCurrent.BeginEdit()
drCurrent("ph") = "342"
drCurrent.EndEdit()
cmdBuilder = New OdbcCommandBuilder(da)
da.Update(ds.GetChanges, "phone")
Comment