私は以前に確立されたものを意味します
DB = Sequel.sqlite('my_blog.db')
また
DB = Sequel.connect('postgres://user:password@localhost/my_db')
また
DB = Sequel.postgres('my_db', :user => 'user', :password => 'password', :host => 'localhost')
またはなど。
Sequel::Database クラスには、「接続」はありますが、「切断」などと呼ばれるパブリック インスタンス メソッドはありません。
誰かがすでにその問題に直面しているかもしれません。任意のアイデアをいただければ幸いです。