You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes when i ran a query and enumerate the solution an error occur
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/rdf-1.0.6/lib/rdf/query/solution.rb:257:in 'method_missing': undefined method 'image_url' for #<RDF::Query::Solution:0x2b0b8b8> (NoMethodError)
It's very strange because i can rerun the same query, without any change, few minute later and this message doesn't show up.
this is the query i run :
a=[]
@repo.build_query do |q|
q << [item_uri,SCHEMA.associatedMedia,:uri]
q << [:uri,SCHEMA.image, :image_url]
end.run do |s|
a << s.image_url.to_s
end
The text was updated successfully, but these errors were encountered:
Sometimes when i ran a query and enumerate the solution an error occur
C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/rdf-1.0.6/lib/rdf/query/solution.rb:257:in 'method_missing': undefined method 'image_url' for #<RDF::Query::Solution:0x2b0b8b8> (NoMethodError)
It's very strange because i can rerun the same query, without any change, few minute later and this message doesn't show up.
this is the query i run :
a=[]
@repo.build_query do |q|
q << [item_uri,SCHEMA.associatedMedia,:uri]
q << [:uri,SCHEMA.image, :image_url]
end.run do |s|
a << s.image_url.to_s
end
The text was updated successfully, but these errors were encountered: