There are a many methods and classes that provide support this. First we have the DataSet which can be thought as a database containing many DataTables. You can save the dataset directly into an XML file or create a DataSet directly from the XML file.
- Writing can be done using either DataSet.WriteXml(filePath, XmlWriteMode.WriteSchema).
- Retrieving the data is back to the DataSet is done using DataSet.ReadXML(filePath).
DIM dv as DataView
dv = New DataView(ds.Tables("EmpMaster"), "empno='111000'")
You can update the record retrieved in the DataView by performing a BeginEdit and EndEdit.
For example you can update the persons address as follows:
dv.AllowEdit = True 'This is because by default the view is read-only
dv.BeginEdit()
dv(0)("Address") = "111 AprilFool Lane"
dv.EndEdit()
This all happens in memory so after updating, you need to write the dataset back to the file. This is the only weakness of this approach since we will need to write back the whole dataset even though we just updated one column in one row.
No comments:
Post a Comment