borland Packages Class Hierarchy jbcl.dataset Package Index
java.lang.Object +----borland.jbcl.dataset.RowStatus
Variables Properties Methods
All rows of a DataSet have status settings that are used by DataSet and other objects. The DataSet class uses a mask of 0 to determine whether the row is visible or hidden (filtered). Other status settings track the edit state of row, for example, INSERTED, UPDATED or DELETED. The edit states are used by the DataSet class when resolving new and updated data back to its source.
public static final int DEFAULT = (RowStatus.UPDATED|RowStatus.INSERTED|RowStatus.LOADED)
public static final int DELETED = 0x01The row has been deleted.
public static final int INSERTED = 0x04The row was added after the DataSet was loaded.
public static final int LOADED = 0x08The row was loaded (ie from the execution of a QueryDataSet's JDBC query or an import operation).
public static final int ORIGINAL = 0x10This is the original copy of a changed row.
public static final int PENDING_RESOLVED = 0x200Row is pending resolution. Used internally.
public static final int UPDATED = 0x02Row has been changed.