B
Bernie Yaeger
I use the following code to clear out a dataset (let's suppose the dataset
has been changed but not the back end, by design) after having once called
the .fill method of a data adapter:
dspubpay.Tables(0).Clear()
dspubpay.Tables(0).Dispose()
I then can simply rebuild table(0) with the usual fill method:
dapubpay.Fill(dspubpay, "pubpay")
My question is, is there any problem with doing this; also, is there a
better way of refreshing the dataset with the current data from the back
end?
Thanks for any help.
Bernie Yaeger
has been changed but not the back end, by design) after having once called
the .fill method of a data adapter:
dspubpay.Tables(0).Clear()
dspubpay.Tables(0).Dispose()
I then can simply rebuild table(0) with the usual fill method:
dapubpay.Fill(dspubpay, "pubpay")
My question is, is there any problem with doing this; also, is there a
better way of refreshing the dataset with the current data from the back
end?
Thanks for any help.
Bernie Yaeger