Rails:Using Insert statement in active record?

I am also referring to Active Record's rdoc but am not able to make
out how to use the insert statement in the above code. Can anyone help
me in using INSERT statement in my code above?

Well if you've got activerecord model classes then you'd just create
instances of those. If not ActiveRecord::Base.connection.insert will execute the chunk of
sql you give it.

Fred