On Feb 13, 11:52 am, sohdubom <[email protected]> wrote: > Thanks Jeremy, > > I'm totally lost on the DB.disconnect ... is 'disconnect' the > same as 'close' the connection? and should I do it explicitly? > Will Sequel handle it automatically?
DB.disconnect will disconnect all available connections to the database. A new connection will then be created whenever the next query needs to be issued. If you think you need to disconnect connections manually, you are probably mistaken. Your usage is valid and should work, but generally should not be used except in specific situations, which I doubt you have since you are using SQLite3. Jeremy --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
