Best way to update data

  • Thread starter Thread starter Sorin Sandu
  • Start date Start date
S

Sorin Sandu

What is the best way to manipulate data (insert and update) in a aspx page ?
I want to inset and update some data and I can't do it in SQL Server.
I have to scan some tables and insert (or update) data in another table.
I've tried something whith datasets but it haven't something lihe a scan or
do while last record.
 
Sorin:

What do you mean by Scan? If you can't use SQL Server, what is the source
of data you are using and where are you trying to update it to? You should
be able to create one dataadapter for fill the data, make changes to it and
use another data adapter to update the data into the second source.

Does Scan mean a SELECT Statement?
 
Back
Top