J
John Rugo
Hi All,
I need some advice. I have been using DATASETS for a while now to get
around a problem. I need to present data that can be selected on a form and
changed. Not just one record but perhaps a field in a thousand records. I
generally use a Stored Procedure in SQL that handles everything; but to
update or insert a lot of data the connection gets strangled from calling
executesql(update this record) and then do the next. That's why I use
Datasets because I update/insert into the dataset and then do an Update on
the DataAdapter which handles all the work.
I want to use just a DataReader to populate my forms. Is there some manner
of using a Transaction or other means to iterate through a list of records
on the screen and update, or insert new data?
Thanks,
John.
I need some advice. I have been using DATASETS for a while now to get
around a problem. I need to present data that can be selected on a form and
changed. Not just one record but perhaps a field in a thousand records. I
generally use a Stored Procedure in SQL that handles everything; but to
update or insert a lot of data the connection gets strangled from calling
executesql(update this record) and then do the next. That's why I use
Datasets because I update/insert into the dataset and then do an Update on
the DataAdapter which handles all the work.
I want to use just a DataReader to populate my forms. Is there some manner
of using a Transaction or other means to iterate through a list of records
on the screen and update, or insert new data?
Thanks,
John.