DB1 = Sequel.sqlite 'one.db' DB2 = Sequel.sqlite 'two.db' class ModelOnOne < Sequel::Model(DB1[:table]) end
class ModelOnTwo < Sequel::Model(DB2[:table]) end Aman Gupta On Jan 31, 3:12 am, celldee <[EMAIL PROTECTED]> wrote: > Hi Ivan, > > Sequel is an ORM. As such, it allows you to perform various database > operations via Ruby libraries. It's up to you how you use it in an n- > tier environment, but whether you use it or not will depend on the > software stack that you have (or are allowed to have) in your target > environment. > > So, Sequel would be used as a component of your n-tier environment in > whichever tier is appropriate. Do you have a particular scenario in > mind? > > Cheers, > > Chris > > On Jan 31, 10:24 am, ivanb <[EMAIL PROTECTED]> wrote: > > > Anyone? > > > On Jan 20, 8:49 pm, ivanb <[EMAIL PROTECTED]> wrote: > > > > Does sequel supports n-tier applications. > > > That is, DB --- aplication server --- client. > > > > Thanks --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "sequel-talk" group. 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 -~----------~----~----~----~------~----~------~--~---
