Well this one has me stumped.
Code:
public IDbCommand CreateCommand() // page 652 (Where might DataSetCommand be located?)
{
// return a new instance of the implementation-specific comamnd object
return new DataSetCommand(this);
}
I can't add using System.Data without causing all kinds of ambiguities, and adding System.Data in front of DataSetCommand doesn't work either. How can I get DataSetCommand out of System.Data then?