I have one of my larger applications successfully uses Sequel with 7 database connections accross different servers and databases.
You could aso do: class Call < Sequel::Model set_dataset $transientdb[:calls] end This should work fine. I'm not sure why you are using 'set_schema' with model table-creation this might be what is going wrong because you're attempting to assign a dataset (define the model) before the table exists. Consider looking into Sequel Migrations. Clive --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
