What would happen if CommitFreeAndNil threw an exception?

RollbackFreeAndNil would be called. Would TD be valid then?

You're eating the exception, and hence the evidence. Don't do that; re-throw:

    procedure BlaBla;
    var
      TD: TDBXTransaction;
    begin
      TD := SQLConnection.BeginTransaction;
      try
        SQLConnection.ExecuteDirect('some sql command');
        SQLConnection.ExecuteDirect('some sql command');
      except
        SQLConnection.RollbackFreeAndNil(TD);
        raise;
      end;
      SQLConnection.CommitFreeAndNil(TD);
    end;