Andrew Timberlake wrote: > On Wed, Jan 21, 2009 at 9:14 AM, Shanmu Gam < > [email protected]> wrote: > >> above code like the one below, will it do the same work? >> >> someone please help. >> >> thanks, >> shanmu >> -- >> Posted via http://www.ruby-forum.com/. >> >> > >> > Yes it will but you have a bug in your code, it should be: > > def list(modl) > var = modl.find(:all) #Must call find on modl, not tab > end > > def hi > tab = User > list(tab) > end > > Can be simplified as: > def list(modl) > modl.find(:all) > end > > def hi > list(User) > end > > -- > Andrew Timberlake > http://ramblingsonrails.com > http://www.linkedin.com/in/andrewtimberlake > > "I have never let my schooling interfere with my education" - Mark Twain
Hi andrews thanks for ur reply. its working. thanks for ur optimization too regards, shanmu -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

