loadOption.upsert

  • Thread starter Thread starter Carly
  • Start date Start date
C

Carly

Hello,

Can somebody explain to me in plain language what is the meaning of
each value in the LoadOption enumeration?
Or some clear articles about DataTable.Load and DataRowVersion.

Thanks,

Carly
 
Hello,

Can somebody explain to me in plain language what is the meaning of
each value in the LoadOption enumeration?
Or some clear articles about DataTable.Load and DataRowVersion.

Thanks,

Carly

From the documentation in VS2K5 (Found by entering LoadOption in the "Look For:"
field of the Help Index):

Member name Description
OverwriteChanges: The incoming values for this row will be written to both the
current value and the original value versions of the data for each column.

PreserveChanges: The incoming values for this row will be written to the
original value version of each column. The current version of the data in each
column will not be changed.

Upsert: The incoming values for this row will be written to the current version
of each column. The original version of each column's data will not be changed.
Good luck with your project,

Otis Mukinfus
http://www.arltex.com
http://www.tomchilders.com
 
Back
Top