ActionScript 2.0 Components Language Reference |
|
|
|
| RDBMSResolver component > RDBMSResolver.updateMode | |||
Flash Player 7.
Flash MX Professional 2004.
resolveData.updateMode
Property; contains several values that determine how key fields are identified when the XML update packet is generated. This property can have the following strings as values:
|
Value |
Description |
|---|---|
|
|
Uses the old values of all of the modified fields to identify the record to be updated. This is the safest value to use for updating, because it guarantees that another user has not modified any field of the record since you retrieved it. However, this approach is more time consuming and generates a larger update packet. |
|
|
Uses the old values of all of the fields modified to identify the record to be updated. This value guarantees that another user has not modified the same fields in the record since you retrieved it. |
|
|
The default value. This setting uses the old value of the key fields. This implies an "optimistic concurrency" model, which most database systems today employ, and guarantees that you are modifying the same record that you retrieved from the database. Your changes overwrite any other user's changes to the same data. |
|
|
|
|