I have a database query that is returning to a variable which contains an address.
@terminal_address = Terminal.find(:all, :select => :full_address ,:conditions => ["id = ?" , params[:id]])
When I pass the @terminal_address
to my geocoding code it errors because of how the data is being passed. If I replace the variable with an address in quotes it works fine. How can I extract the string from the variable?
This is very frustrating!