borland Packages Class Hierarchy dx.dataset Package
com.borland.dx.dataset.UpdateMode
Variables
The UpdateMode component collects constants used when resolving changes for the QueryDataSet and ProcedureDataSet components.
public static final int ALL_COLUMNS = 1Every column is used to find the row being updated (the default). This is the most restrictive mode.
public static final int CHANGED_COLUMNS = 3The key columns and columns that have changed are used to find the record being updated.
public static final int KEY_COLUMNS = 2Only the key columns are used to find the record being updated. This is the least restrictive mode and should be used only if other users will not be changing the records being updated.
public static final int UNASSIGNED = 0The update mode has not been assigned.