Hi,
I have the following code and I need to understand the statement
DB.LoadDataSet(dbCommand, ds, new string[] { "ProductSomething",
"SomeDetail" });
So what does DB.LoadSet do and what parameters do I need to pass to
it. Your input will be greatly appreciated.
Thanks,
SA
Here's the part of the Code:
====================
public DataSet GetUpc()
{
string sqlCommand = BizLogicCommon.SPGetSomeID;
DbCommand dbCommand = DB.GetStoredProcCommand(sqlCommand);
DataSet ds = new DataSet();
DB.LoadDataSet(dbCommand, ds, new string[]
{ "ProductGroups", "SomeDetail" });
return ds;
}