closeConnection method

  1. @override
bool closeConnection(
  1. DBSQLiteConnectionWrapper connection
)
override

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;
}