VB.NET DataView

Briefly describe DataView.

- The data represented in a DataView object can be filtered and sorted.
- It has Sort property and RowFilter property.
- A databindable, customized view of a DataTable for sorting, filtering, searching, editing, and navigation is represented.
- Data is not stored, but it represents a connected view of its corresponding DataTable.
- The changes to the DataView’s data will affect the DataTable and in turn the changes to the DataTable’s data will affect all DataViews associated with it.
VB.NET XmlDataDocument
VB.NET - Define an XmlDataDocument - An XmlDataDocument is an in-memory representation of data in a hierarchical XML format ......
VB.NET - SQL injection attack
VB.NET - SQL injection attack - It occurs when SQL string is passed as user input to the application......
VB.NET - ReadXML, WriteXML, GetXML
VB.NET - ReadXML, WriteXML, GetXML - ReadXML: The dataset method that reads data from an XML file into a dataset. WriteXML......
Post your comment