DataTable Question

  • Thread starter Thread starter Roshawn Dawson
  • Start date Start date
R

Roshawn Dawson

Hi,

I am using a Repeater control to bind to a data table. The data table
is returned from a class library function that I've coded.

After obtaining the data table from the class library, I then bind the
table to the Repeater control and set the variable that references the
class to nothing.

Now, I don't place the returned data table into a dataset. However, I'd
like to modify the returned table. The question: is the returned table
placed in the cache without a dataset, or must I explicitly place it in
a dataset first, and then modify it?

Thanks,
Roshawn
 
Roshawn,
The question: is the returned table placed in the cache without a dataset,
or must I explicitly place it in a dataset first, and then modify it?

Why, would be bad practise, use the object as it is, when you have more
tables with a relation, than you have to place it in a dataset.

I hope this helps,

Cor
 
I only have one data table. And I'd like to add/edit/update/delete data
in it without the overhead of a dataset.
 
Back
Top