databindings rebound

  • Thread starter Thread starter George P.
  • Start date Start date
G

George P.

This is taken from autogenerated code.

Can somebody explain to me what does this mean?

// Create a new dataset to hold the records returned from the call to
FillDataSet.

// A temporary dataset is used because filling the existing dataset would

// require the databindings to be rebound.
 
Hi George,

It means that code creates copy of the DataSet and keeps it aside in a case
if application requires to use same data later on. It is just probably some
sort of backup copy of the existing DataSet.
 
Back
Top