Select from following answers:- NewRow()
- Add()
- Read()
- ExecuteReader()
- All Above
After you create a DataTable and define its structure using columns and constraints, you can add new rows of data to the table. To add a new row, declare a new variable as type DataRow. A new DataRow object is returned when you call the NewRow method. The DataTable then creates the DataRow object based on the structure of the table, as defined by the DataColumnCollection.
Show Correct Answer
Asked In: Many Interviews |
Alert Moderator