| 1. |
How Can You Add Or Remove Rows From The Datatable Object Of Dataset? |
|
Answer» The DataRowCollection class defines the collection of rows for the DataTable object in a DataSet. The DataTable class provides the NewRow() method to ADD a new DataRow to DataTable. The NewRow method CREATES a new row, which implements the same SCHEMA as applied to the DataTable. The FOLLOWING are the methods provided by the DataRowCollection object: The DataRowCollection class defines the collection of rows for the DataTable object in a DataSet. The DataTable class provides the NewRow() method to add a new DataRow to DataTable. The NewRow method creates a new row, which implements the same schema as applied to the DataTable. The following are the methods provided by the DataRowCollection object: |
|