Displaying 1 result from an estimated 1 matches for "formvar".
Did you mean:
formar
2006 Jul 10
2
Simple question about retrieving id''s
Hi All,
Sorry if this has been covered before, but I couldn''t find a previous
thread on the list that answered my question. Basically I''m creating a
new record in a table like so:
def create
@myInstance = MyModel.new(params[:formVars])
@myInstance.save!
end
My question is: How do I then get the id of the newly created record
within this create method? It seems like it should be pretty
straightforward, but I''m having a brainfreeze about it, and I didn''t see
a method in the rails api that did that.
Tha...