C
Charles
I would appreciate some help, or direction, in understanding two things
about using the DataAdapter's update method. The first issue I have is
the DataAdapter and Table need to be declared in the same procedure as
the three commands. Usally, this is done at the begining of a Web Form
to display data. Unless I am doing something wrong, once you leave
that procedure you loose those declarations. Since you send updates
back to the data source at the end you would need to maintain the
declarations. It seems that using a session variable would not be a
good idea because the session is likely to time out. If you use public
variables you are going to end up with a lot varables.
The second area is using the insert, delete and upate commands from a
stored procedure. I cannot seem to find any clear documentation on how
do this.
Again, I would really appreciate some feedback on this.
Thanks
Charles
about using the DataAdapter's update method. The first issue I have is
the DataAdapter and Table need to be declared in the same procedure as
the three commands. Usally, this is done at the begining of a Web Form
to display data. Unless I am doing something wrong, once you leave
that procedure you loose those declarations. Since you send updates
back to the data source at the end you would need to maintain the
declarations. It seems that using a session variable would not be a
good idea because the session is likely to time out. If you use public
variables you are going to end up with a lot varables.
The second area is using the insert, delete and upate commands from a
stored procedure. I cannot seem to find any clear documentation on how
do this.
Again, I would really appreciate some feedback on this.
Thanks
Charles