1
Q:
A) Execute the BeginInit method of XYZDataSet. | B) Execute the Open method of XYZConnection. |
C) Execute the FillSchema method of XYZDataAdapter and pass in XYZDataSet. | D) Execute the Fill method of XYZDataAdapter and pass in XYZDataSet. |
Answer: D) Execute the Fill method of XYZDataAdapter and pass in XYZDataSet.
Explanation:
Explanation:
Dataset is a container; therefore, you need to fill it with data. You can populate a dataset by calling the Fill method of a data adapter.