Hello, I am a RAILS beginner and have been building an application that has quite a few models in it. The problem I encounter is the following: There are three models: Contig, Intergenic, Longshortgene A contig has many intergenics and many longshortgenes. One of the fields in Intergenic is of the form A-B, where A and B are Longshortgene objects. From the intergenics view, I would like to use A and B, in separate calls, to find any longshortgenes that have the same geneid (A or B) and belong to the same contig as the intergenics object. My intergenics controller''s "show" method is as follows: def show @intergenic = Intergenic.find(params[:id]) genearr=@intergenic.regionid.split(''-'') genearr.each do |gene| @longgenes = @intergenic.ls_neighborhood(gene, ''LONG'') @shortgenes = @intergenic.ls_neighborhood(gene, ''SHORT'') render :action => ''list'' end end My model intergenic.rb contains the following: belongs_to :contig def ls_neighborhood(geneid,genetype) Longshortgene.find_by_sql["select l.geneid from longshortgenes l where l.geneid=? and l.contig_id=? and l.genetype=?",geneid,contig_id,genetype] end From the "show" view, I just try to access @longgenes and @shortgenes and do something with them. Until I inserted the above blocks of code, my application was functional. Now I get the following error: ArgumentError in IntergenicsController#show wrong number of arguments (4 for 1) RAILS_ROOT: /Users/apati/Projects/qa Application Trace | Framework Trace | Full Trace app/models/intergenic.rb:6:in `find_by_sql'' app/models/intergenic.rb:6:in `ls_neighborhood'' app/controllers/intergenics_controller.rb:27:in `show'' app/controllers/intergenics_controller.rb:26:in `each'' app/controllers/intergenics_controller.rb:26:in `show'' Could someone please point out what I am doing wrong? Thank you very much! Amrita --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
I believe find_by_sql gets wrapped in parentheses and quotes. Like so: find_by_sql("select l.geneid from longshortgenes as l where l.geneid=#{geneid} and l.contig_id=#{contig_id} and l.genetype=#{genetype}") You might want to double-check that query, but that''s the format for find_by_sql. -- Josh amrita wrote:> Hello, > > I am a RAILS beginner and have been building an application that has > quite a few models in it. The problem I encounter is the following: > > There are three models: Contig, Intergenic, Longshortgene > > A contig has many intergenics and many longshortgenes. > > One of the fields in Intergenic is of the form A-B, where A and B are > Longshortgene objects. > > From the intergenics view, I would like to use A and B, in separate > calls, to find any longshortgenes that have the same geneid (A or B) > and belong to the same contig as the intergenics object. > > My intergenics controller''s "show" method is as follows: > > def show > @intergenic = Intergenic.find(params[:id]) > > genearr=@intergenic.regionid.split(''-'') > genearr.each do |gene| > @longgenes = @intergenic.ls_neighborhood(gene, ''LONG'') > @shortgenes = @intergenic.ls_neighborhood(gene, ''SHORT'') > render :action => ''list'' > end > > end > > My model intergenic.rb contains the following: > > belongs_to :contig > > def ls_neighborhood(geneid,genetype) > Longshortgene.find_by_sql["select l.geneid from longshortgenes l > where l.geneid=? and l.contig_id=? and > l.genetype=?",geneid,contig_id,genetype] > end > > From the "show" view, I just try to access @longgenes and @shortgenes > and do something with them. > > Until I inserted the above blocks of code, my application was > functional. Now I get the following error: > > ArgumentError in IntergenicsController#show > > wrong number of arguments (4 for 1) > > RAILS_ROOT: /Users/apati/Projects/qa > Application Trace | Framework Trace | Full Trace > > app/models/intergenic.rb:6:in `find_by_sql'' > app/models/intergenic.rb:6:in `ls_neighborhood'' > app/controllers/intergenics_controller.rb:27:in `show'' > app/controllers/intergenics_controller.rb:26:in `each'' > app/controllers/intergenics_controller.rb:26:in `show'' > > Could someone please point out what I am doing wrong? > > Thank you very much! > > Amrita-- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Thanks Josh. The errors have gone now. But when I do the following in the view, <% @longgenes.each do |lgene| %> <%= lgene %> <% end %> it doesn''t print anything. I have ensured that the data is such that if the query is executed correctly, @longgenes will have some values in it. Thanks, Amrita On Jul 9, 10:30 pm, Joshua Abbott <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> I believe find_by_sql gets wrapped in parentheses and quotes. Like so: > > find_by_sql("select l.geneid from longshortgenes as l where > l.geneid=#{geneid} and l.contig_id=#{contig_id} and > l.genetype=#{genetype}") > > You might want to double-check that query, but that''s the format for > find_by_sql. > > -- Josh > > > > amrita wrote: > > Hello, > > > I am a RAILS beginner and have been building an application that has > > quite a few models in it. The problem I encounter is the following: > > > There are three models: Contig, Intergenic, Longshortgene > > > A contig has many intergenics and many longshortgenes. > > > One of the fields in Intergenic is of the form A-B, where A and B are > > Longshortgene objects. > > > From the intergenics view, I would like to use A and B, in separate > > calls, to find any longshortgenes that have the same geneid (A or B) > > and belong to the same contig as the intergenics object. > > > My intergenics controller''s "show" method is as follows: > > > def show > > @intergenic = Intergenic.find(params[:id]) > > > genea...-ei/hPQwURshyLknkS6aVii9Sl7QTCCPoXqFh9Ls21Oc@public.gmane.org(''-'') > > genearr.each do |gene| > > @longgenes = @intergenic.ls_neighborhood(gene, ''LONG'') > > @shortgenes = @intergenic.ls_neighborhood(gene, ''SHORT'') > > render :action => ''list'' > > end > > > end > > > My model intergenic.rb contains the following: > > > belongs_to :contig > > > def ls_neighborhood(geneid,genetype) > > Longshortgene.find_by_sql["select l.geneid from longshortgenes l > > where l.geneid=? and l.contig_id=? and > > l.genetype=?",geneid,contig_id,genetype] > > end > > > From the "show" view, I just try to access @longgenes and @shortgenes > > and do something with them. > > > Until I inserted the above blocks of code, my application was > > functional. Now I get the following error: > > > ArgumentError in IntergenicsController#show > > > wrong number of arguments (4 for 1) > > > RAILS_ROOT: /Users/apati/Projects/qa > > Application Trace | Framework Trace | Full Trace > > > app/models/intergenic.rb:6:in `find_by_sql'' > > app/models/intergenic.rb:6:in `ls_neighborhood'' > > app/controllers/intergenics_controller.rb:27:in `show'' > > app/controllers/intergenics_controller.rb:26:in `each'' > > app/controllers/intergenics_controller.rb:26:in `show'' > > > Could someone please point out what I am doing wrong? > > > Thank you very much! > > > Amrita > > -- > Posted viahttp://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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
On 10 Jul 2008, at 19:42, amrita wrote:> > Thanks Josh. The errors have gone now. But when I do the following in > the view, > > <% @longgenes.each do |lgene| %> > <%= lgene %> > <% end %>That''s because <%= %> just ends up calling to_s on the result, and to_s on an activerecord object isn''t something you can dump straight in a view (because it''s full of things like < which makes the browser go uts). Fred> > > it doesn''t print anything. I have ensured that the data is such that > if the query is executed correctly, @longgenes will have some values > in it. > > Thanks, > Amrita > > On Jul 9, 10:30 pm, Joshua Abbott <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> > wrote: >> I believe find_by_sql gets wrapped in parentheses and quotes. Like >> so: >> >> find_by_sql("select l.geneid from longshortgenes as l where >> l.geneid=#{geneid} and l.contig_id=#{contig_id} and >> l.genetype=#{genetype}") >> >> You might want to double-check that query, but that''s the format for >> find_by_sql. >> >> -- Josh >> >> >> >> amrita wrote: >>> Hello, >> >>> I am a RAILS beginner and have been building an application that has >>> quite a few models in it. The problem I encounter is the following: >> >>> There are three models: Contig, Intergenic, Longshortgene >> >>> A contig has many intergenics and many longshortgenes. >> >>> One of the fields in Intergenic is of the form A-B, where A and B >>> are >>> Longshortgene objects. >> >>> From the intergenics view, I would like to use A and B, in separate >>> calls, to find any longshortgenes that have the same geneid (A or B) >>> and belong to the same contig as the intergenics object. >> >>> My intergenics controller''s "show" method is as follows: >> >>> def show >>> @intergenic = Intergenic.find(params[:id]) >> >>> genea...-ei/hPQwURshyLknkS6aVii9Sl7QTCCPoXqFh9Ls21Oc@public.gmane.org(''-'') >>> genearr.each do |gene| >>> @longgenes = @intergenic.ls_neighborhood(gene, ''LONG'') >>> @shortgenes = @intergenic.ls_neighborhood(gene, ''SHORT'') >>> render :action => ''list'' >>> end >> >>> end >> >>> My model intergenic.rb contains the following: >> >>> belongs_to :contig >> >>> def ls_neighborhood(geneid,genetype) >>> Longshortgene.find_by_sql["select l.geneid from longshortgenes l >>> where l.geneid=? and l.contig_id=? and >>> l.genetype=?",geneid,contig_id,genetype] >>> end >> >>> From the "show" view, I just try to access @longgenes and >>> @shortgenes >>> and do something with them. >> >>> Until I inserted the above blocks of code, my application was >>> functional. Now I get the following error: >> >>> ArgumentError in IntergenicsController#show >> >>> wrong number of arguments (4 for 1) >> >>> RAILS_ROOT: /Users/apati/Projects/qa >>> Application Trace | Framework Trace | Full Trace >> >>> app/models/intergenic.rb:6:in `find_by_sql'' >>> app/models/intergenic.rb:6:in `ls_neighborhood'' >>> app/controllers/intergenics_controller.rb:27:in `show'' >>> app/controllers/intergenics_controller.rb:26:in `each'' >>> app/controllers/intergenics_controller.rb:26:in `show'' >> >>> Could someone please point out what I am doing wrong? >> >>> Thank you very much! >> >>> Amrita >> >> -- >> Posted viahttp://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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Right, so include the method you want to call on lgene: <% @longgenes.each do |lgene| %> <%= lgene.name %> <% end %> For example. -- Josh Frederick Cheung wrote:> On 10 Jul 2008, at 19:42, amrita wrote: > >> >> Thanks Josh. The errors have gone now. But when I do the following in >> the view, >> >> <% @longgenes.each do |lgene| %> >> <%= lgene %> >> <% end %> > That''s because <%= %> just ends up calling to_s on the result, and > to_s on an activerecord object isn''t something you can dump straight > in a view (because it''s full of things like < which makes the browser > go uts). > > Fred-- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Fred and Josh, Thanks for your replies. I tried that already. It doesn''t print anything. I also inserted the following in the view: <% if @longgenes.length == 0 %> <b> no long genes </b> <% end %> and it prints "no long genes". So, @longgenes doesn''t contain anything. I am using Aptana Studio and when I load the html page, I see the queries being executed on the console. I changed the query in the model to the following: Longshortgene.find_by_sql("SELECT * FROM `longshortgenes` WHERE (`longshortgenes`.`geneid`=''#{geneid}'' and `longshortgenes`.`contig_id`=#{contig_id} and `longshortgenes`.`genetype`=''#{genetype}'')") The queries get executed but the view finds @longgenes empty. Is there a problem in returning values from the model''s method to the controller''s method? I executed the same queries (copied from Aptana''s console) on MySQl and it returns the correct number of rows from that table. Can you see what is going wrong? Thanks, Amrita On Jul 10, 2:16 pm, Joshua Abbott <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> wrote:> Right, so include the method you want to call on lgene: > > <% @longgenes.each do |lgene| %> > <%= lgene.name %> > <% end %> > > For example. > > -- Josh > > > > Frederick Cheung wrote: > > On 10 Jul 2008, at 19:42, amrita wrote: > > >> Thanks Josh. The errors have gone now. But when I do the following in > >> the view, > > >> <% @longgenes.each do |lgene| %> > >> <%= lgene %> > >> <% end %> > > That''s because <%= %> just ends up calling to_s on the result, and > > to_s on an activerecord object isn''t something you can dump straight > > in a view (because it''s full of things like < which makes the browser > > go uts). > > > Fred > > -- > Posted viahttp://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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Just to verify that find_by_sql is working correctly, I replaced the existing query with Longshortgene.find_by_sql("SELECT * FROM `longshortgenes`") and it works correctly! Then there is a problem with the way the longer query is framed? On Jul 10, 3:20 pm, amrita <amrita.p...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Fred and Josh, Thanks for your replies. I tried that already. It > doesn''t print anything. I also inserted the following in the view: > > <% if @longgenes.length == 0 %> > <b> no long genes </b> > <% end %> > > and it prints "no long genes". So, @longgenes doesn''t contain > anything. > > I am using Aptana Studio and when I load the html page, I see the > queries being executed on the console. I changed the query in the > model to the following: > > Longshortgene.find_by_sql("SELECT * FROM `longshortgenes` WHERE > (`longshortgenes`.`geneid`=''#{geneid}'' and > `longshortgenes`.`contig_id`=#{contig_id} and > `longshortgenes`.`genetype`=''#{genetype}'')") > > The queries get executed but the view finds @longgenes empty. Is there > a problem in returning values from the model''s method to the > controller''s method? > > I executed the same queries (copied from Aptana''s console) on MySQl > and it returns the correct number of rows from that table. > > Can you see what is going wrong? > > Thanks, > Amrita > > On Jul 10, 2:16 pm, Joshua Abbott <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> > wrote: > > > Right, so include the method you want to call on lgene: > > > <% @longgenes.each do |lgene| %> > > <%= lgene.name %> > > <% end %> > > > For example. > > > -- Josh > > > Frederick Cheung wrote: > > > On 10 Jul 2008, at 19:42, amrita wrote: > > > >> Thanks Josh. The errors have gone now. But when I do the following in > > >> the view, > > > >> <% @longgenes.each do |lgene| %> > > >> <%= lgene %> > > >> <% end %> > > > That''s because <%= %> just ends up calling to_s on the result, and > > > to_s on an activerecord object isn''t something you can dump straight > > > in a view (because it''s full of things like < which makes the browser > > > go uts). > > > > Fred > > > -- > > Posted viahttp://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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Also, when I replace all the variables in the query with constants, i,e,, geneid with an actual value and contig_ig with an actual value, it works! When I use variables, the query is translated correctly as is shown on the console, but no output is obtained :-( On Jul 10, 3:55 pm, amrita <amrita.p...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Just to verify that find_by_sql is working correctly, I replaced the > existing query with > > Longshortgene.find_by_sql("SELECT * FROM `longshortgenes`") > > and it works correctly! Then there is a problem with the way the > longer query is framed? > > On Jul 10, 3:20 pm, amrita <amrita.p...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > Fred and Josh, Thanks for your replies. I tried that already. It > > doesn''t print anything. I also inserted the following in the view: > > > <% if @longgenes.length == 0 %> > > <b> no long genes </b> > > <% end %> > > > and it prints "no long genes". So, @longgenes doesn''t contain > > anything. > > > I am using Aptana Studio and when I load the html page, I see the > > queries being executed on the console. I changed the query in the > > model to the following: > > > Longshortgene.find_by_sql("SELECT * FROM `longshortgenes` WHERE > > (`longshortgenes`.`geneid`=''#{geneid}'' and > > `longshortgenes`.`contig_id`=#{contig_id} and > > `longshortgenes`.`genetype`=''#{genetype}'')") > > > The queries get executed but the view finds @longgenes empty. Is there > > a problem in returning values from the model''s method to the > > controller''s method? > > > I executed the same queries (copied from Aptana''s console) on MySQl > > and it returns the correct number of rows from that table. > > > Can you see what is going wrong? > > > Thanks, > > Amrita > > > On Jul 10, 2:16 pm, Joshua Abbott <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> > > wrote: > > > > Right, so include the method you want to call on lgene: > > > > <% @longgenes.each do |lgene| %> > > > <%= lgene.name %> > > > <% end %> > > > > For example. > > > > -- Josh > > > > Frederick Cheung wrote: > > > > On 10 Jul 2008, at 19:42, amrita wrote: > > > > >> Thanks Josh. The errors have gone now. But when I do the following in > > > >> the view, > > > > >> <% @longgenes.each do |lgene| %> > > > >> <%= lgene %> > > > >> <% end %> > > > > That''s because <%= %> just ends up calling to_s on the result, and > > > > to_s on an activerecord object isn''t something you can dump straight > > > > in a view (because it''s full of things like < which makes the browser > > > > go uts). > > > > > Fred > > > > -- > > > Posted viahttp://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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
OK, I made it work, but the solution was more of a hack. I moved all the logic to the model''s method, so that I do no pass any arguments from the controller to the model method call. That solved the problem. So now in my controller, I have, @lsgenes = @intergenic.ls_neighborhood In my model, I have: def ls_neighborhood genearr=regionid.split(''-'') sql="SELECT * FROM longshortgenes WHERE longshortgenes.contig_id="+contig_id.to_s+" AND (longshortgenes.geneid=''"+genearr[0]+"'' OR longshortgenes.geneid=''"+genearr[1]+"'')" Longshortgene.find_by_sql(sql) end So, the application works, but when you create a custom find method, how do you pass arguments correctly? Thanks, Amrita On Jul 10, 4:01 pm, amrita <amrita.p...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Also, when I replace all the variables in the query with constants, > i,e,, geneid with an actual value and contig_ig with an actual value, > it works! When I use variables, the query is translated correctly as > is shown on the console, but no output is obtained :-( > > On Jul 10, 3:55 pm, amrita <amrita.p...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > Just to verify that find_by_sql is working correctly, I replaced the > > existing query with > > > Longshortgene.find_by_sql("SELECT * FROM `longshortgenes`") > > > and it works correctly! Then there is a problem with the way the > > longer query is framed? > > > On Jul 10, 3:20 pm, amrita <amrita.p...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > Fred and Josh, Thanks for your replies. I tried that already. It > > > doesn''t print anything. I also inserted the following in the view: > > > > <% if @longgenes.length == 0 %> > > > <b> no long genes </b> > > > <% end %> > > > > and it prints "no long genes". So, @longgenes doesn''t contain > > > anything. > > > > I am using Aptana Studio and when I load the html page, I see the > > > queries being executed on the console. I changed the query in the > > > model to the following: > > > > Longshortgene.find_by_sql("SELECT * FROM `longshortgenes` WHERE > > > (`longshortgenes`.`geneid`=''#{geneid}'' and > > > `longshortgenes`.`contig_id`=#{contig_id} and > > > `longshortgenes`.`genetype`=''#{genetype}'')") > > > > The queries get executed but the view finds @longgenes empty. Is there > > > a problem in returning values from the model''s method to the > > > controller''s method? > > > > I executed the same queries (copied from Aptana''s console) on MySQl > > > and it returns the correct number of rows from that table. > > > > Can you see what is going wrong? > > > > Thanks, > > > Amrita > > > > On Jul 10, 2:16 pm, Joshua Abbott <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> > > > wrote: > > > > > Right, so include the method you want to call on lgene: > > > > > <% @longgenes.each do |lgene| %> > > > > <%= lgene.name %> > > > > <% end %> > > > > > For example. > > > > > -- Josh > > > > > Frederick Cheung wrote: > > > > > On 10 Jul 2008, at 19:42, amrita wrote: > > > > > >> Thanks Josh. The errors have gone now. But when I do the following in > > > > >> the view, > > > > > >> <% @longgenes.each do |lgene| %> > > > > >> <%= lgene %> > > > > >> <% end %> > > > > > That''s because <%= %> just ends up calling to_s on the result, and > > > > > to_s on an activerecord object isn''t something you can dump straight > > > > > in a view (because it''s full of things like < which makes the browser > > > > > go uts). > > > > > > Fred > > > > > -- > > > > Posted viahttp://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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---