Thanks for the help Igor.  I am not sure what you mean.  I see in the
documentation that save is insert or update information:

save    ()      method   
public function save(cascade:Boolean = true, responder:Responder =
null):AsyncToken

Saves new or updates existing ActiveRecord. The method sends a request
to the remote data source. New ActiveRecord instance is added to the
data store, existing record is updated with all the new values in the
record properties. Calling save() on an instance of ActiveRecord is
equivalent to calling save() on the data mapper associated with this
ActiveRecord.
Parameters
        cascade:Boolean (default = true) — indicates if the save operation
should do deep traversal over all related records. If true, save
performs deep traversal, otherwise, only direct properties of the
ActiveRecord are saved in the data store.
 
        responder:Responder (default = null) — a responder object to receive
success/failure callbacks when the save operation is complete.

Returns
        AsyncToken — AsyncToken returned from the underlying remote invocation 

I am not sure how to set this up for an update.  When doing a SQL
update I do somting like:
Update some_table 
set This = That 
where id = #

How do I specify what table to update when invoking the save() method
in flex?

Thanks for the help, 
timgerr

--- In flexcoders@yahoogroups.com, "Igor Costa" <[EMAIL PROTECTED]> wrote:
>
> I guess there's something on the code. take look at the sql instrict
methods
> to see if there's something like UPDATE
> 
> Regards
> Igor
> 


Reply via email to