Transaction save?

Hi,
I have these two records which are saved in two different tables. The
problem is unless the first record (Cr) is saved the second (Crmapping)
doesn’t get created because of referencing. It’s my assumption that
create() does not need explicit save() method. It instantiates the model
obj and saves it into db. But then any ideas on why the Cr.create is not
creating a record?

if (a == b) then
Cr.create(
:id => vcr,
:status => ‘NEW’,
:er => ‘N’,
:issuedate => Date.today,
:needbydate => Date.today
)

Crmapping.create(
       :k_id => found[0].id,
       :c_id => vcr,
       :sys_creation_date => Date.today
       )

end

Since the first record was not created when executing the second I get
error:
Mysql::Error: #23000Cannot add or update a child row: a foreign key
constraint fails…

Thanks

You can wrap blocks in a transaction

.transaction do

end