The Fill() method is used to load data from a DataAdapter into a DataSet. The Fill method executes the query and populates the DataSet with the results. ExecuteQuery() is not a standard DataAdapter method, and Read() is typically used with DataReaders, not DataAdapters. Fill() is the standard ADO.NET method for this purpose.