Package com.oltpbenchmark.benchmarks.wikipedia.procedures

Examples of com.oltpbenchmark.benchmarks.wikipedia.procedures.RemoveWatchList.run()


  }

  public void removeFromWatchlist(int userId, int nameSpace, String pageTitle) throws SQLException {
    RemoveWatchList proc = this.getProcedure(RemoveWatchList.class);
        assert (proc != null);
        proc.run(conn, userId, nameSpace, pageTitle);
  }

  public void updatePage(String userIp, int userId, int nameSpace, String pageTitle) throws SQLException {
    Article a = getPageAnonymous(false, userIp, nameSpace, pageTitle);
    conn.commit();
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.