I use *Sequel* <http://sequel.rubyforge.org/> as an ORM for a Ruby project.
DataSets can be queried with the classical handlers: SELECT<http://sequel.rubyforge.org/rdoc/classes/Sequel/Dataset.html#method-i-select>, WHERE, etc. I manage to use the SELECT handler with the following: database[:table].select{[DATE(created_at)]} # It works, but it's static I'd like the attribute name to be variable, so I'd need something like: database[:table].select{[DATE(@created_at)]} # It doesn't work But it doesn't work... How could I achieve this? -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/sequel-talk/-/bQoZyKH2RbwJ. 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/sequel-talk?hl=en.
