Explicitly close the connection.
Idiomatic use as follows is suggested:
{ auto con = new Connection("localhost:user:password:mysqld"); scope(exit) con.close(); // Use the connection ... }
See Implementation
Explicitly close the connection.
Idiomatic use as follows is suggested: