public ResultSet getRequestHandler(String User) {

    try {
      sql.getConnection();
    } catch (ClassNotFoundException e) {
      e.printStackTrace();
    } catch (SQLException e) {
      e.printStackTrace();
    }

    try {
      return (ResultSet) sql.authRequest(User);
    } catch (Exception e) {
      e.printStackTrace();
    }
    return null;
  }