R
Randall Parker
I'm filling up a dataset table with a database query. Then I'm binding the dataset to
an ASP.Net aspataGrid.
However, some derived columns have values that are too complicated to fill out in the
SELECT statement in the query. Can one add additional columns to a dataset after
initially creating a dataset with a database query?
What I want to do is to fill up the dataset with a query, create additional columns
(unless I can/should do that in the SELECT list?), loop thru the dataset and on each
row do some logic to decide how to fill out the derived columns.
The derived columns can all be text. I do not need to do updates on this table back
into the database. Is this a reasonable approach?
an ASP.Net aspataGrid.
However, some derived columns have values that are too complicated to fill out in the
SELECT statement in the query. Can one add additional columns to a dataset after
initially creating a dataset with a database query?
What I want to do is to fill up the dataset with a query, create additional columns
(unless I can/should do that in the SELECT list?), loop thru the dataset and on each
row do some logic to decide how to fill out the derived columns.
The derived columns can all be text. I do not need to do updates on this table back
into the database. Is this a reasonable approach?