On Wednesday, April 9, 2014 7:58:30 AM UTC-7, Luca Guidi wrote: > > Jeremy, > My apologies for have missed that piece of code. Just had a deeper look at > the documentation and code. > > Thank you for this awesome gem. With it I'm building Lotus::Model, which > is part of http://lotusrb.org. > The interesting part is that I'm using Sequel to implement a data mapper > on top of it. >
That sounds great. There have been requests in the past for an ORM build on top of Sequel using the datamapper pattern, and it would be nice to have somewhere to point those requestors (Sequel::Model uses the active record pattern). Note that using Database#dataset_class= is probably not what you want to do, unless you want to create separate dataset classes for every database you want to support. You probably want to use Database#extend_datasets with a module. Thanks, Jeremy -- You received this message because you are subscribed to the Google Groups "sequel-talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sequel-talk. For more options, visit https://groups.google.com/d/optout.
