closeConnection method
Implementation
@override
bool closeConnection(DBSQLiteConnectionWrapper connection) {
_log.info('closeConnection> $connection');
// Only marks the wrapper closed: the native handle is shared and is
// disposed by [close].
try {
connection.close();
} catch (_) {}
return true;
}