C
Christopher Weaver
A component that I'm using expects the tables within it to be accessed as
properties (DataSetName.TableName). I have created a DataSet like this:
dsTaskActivities = new DataSet();
odbcDA_TaskActivities.FillSchema(dsTaskActivities, SchemaType.Source,
"Tasks");
My DataAdabpter contains the necessary SQL to retrieve the table, "Tasks",
and the new table ends up in the Tables property of the DataSet but not as
an individual property of the DataSet.
Can anyone tell me how to create the DataTable such that it becomes a
property of the DataSet?
properties (DataSetName.TableName). I have created a DataSet like this:
dsTaskActivities = new DataSet();
odbcDA_TaskActivities.FillSchema(dsTaskActivities, SchemaType.Source,
"Tasks");
My DataAdabpter contains the necessary SQL to retrieve the table, "Tasks",
and the new table ends up in the Tables property of the DataSet but not as
an individual property of the DataSet.
Can anyone tell me how to create the DataTable such that it becomes a
property of the DataSet?