From: akbarhome Date: 2007-05-02T15:55:07+09:00 Subject: Re: How to save the record in table using SQL query On May 2, 12:14 pm, Mitesh Jain wrote: > Hello All, > > how to execute > > insert into employ values('mitesh',1); > > how to execute this directly with out using .save function. > > Thanking you > > -- > Posted viahttp://www.ruby-forum.com/. What is your context? Here is my guess. How about this: YourClass.executeQuery("insert into employ values('mitesh',1)");