more on the search thing - I think I can fix it by changing in Hobo.rb in

         def find_by_search(query, search_targets=nil)


column_queries = search_target.search_columns.map { |column| "#{column} like ?" 
}

                to 

column_queries = search_target.search_columns.map { |column| "upper(#{column}) 
like upper(?)" }
          

Is there a place in my project I can put my new find_by_search method so that 
it overrides the default Hobo one?  Or do I need to modify Hobo on my 
deployment machine to make this work?


-- 
You received this message because you are subscribed to the Google Groups "Hobo 
Users" 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/hobousers?hl=en.

Reply via email to