maybe some ruby experts out there can shed some light on how activerecord know to do an insert or update when calling save(). what is the logic behind it? does it check to see if the primary key is blank or something and if so does an insert, if not an update?
|
|
|
|
|
|
|
Whilst it's fine for some people to say "RTFM" I rather the more walk-through-but-still-entirely-useless-when-Rails-3-comes-out-and-changes-everything response: How it works in Rails 2.3 (aka "today")
You can ignore the first line of this method as it only raises an error if the record is readonly (it isn't usually, but in the case of joins it may be). What we are interested in here is the second and third lines inside the method. The second line calls
And the variable So if this Furthermore, when you find a record it does not call Let's say for example you want to find the last
You'll see here that nowhere along this change is Hope this helps you understand. |
||||
|
|
|
|
||
|
|
It simply sets a member variable called new_record to true on initialization, and then sets it to false when it saves. Then it uses that variable to determine whether to insert or update. Simplicity itself. |
||
|
|
|
It principaly relies on the new_record? method. In fact it's not really hard.
To see when it happens, go to ActiveRecord::Base, line 2911
|
||||
|
