Shutdown the database current connection
Idiomatically used with a scope guard:
// DatabaseDriver db = …; db.connect(); scope(exit) db.close();
See Implementation
Shutdown the database current connection
Idiomatically used with a scope guard: