Displaying 1 result from an estimated 1 matches for "performfind".
Did you mean:
  performend
  
2006 Feb 21
3
controller subroutines
Trying to find this documented in the Agile book and don''t see an
appropriate example so I am confused.
I have a method in my controller...
def performfind
  myfind = ["Select * from clients where ..."]
           even more...complicated find here
  end
and within the controller, I want to use the ''myfind'' string
How do I get the string back from the method (which I gather is supposed
to be in ''private''...