Package com.oltpbenchmark.benchmarks.wikipedia.procedures

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


  public Article getPageAuthenticated(boolean forSelect, String userIp, int userId,
                                  int nameSpace, String pageTitle) throws SQLException {
    GetPageAuthenticated proc = this.getProcedure(GetPageAuthenticated.class);
        assert (proc != null);
        return proc.run(conn, forSelect, userIp, userId, nameSpace, pageTitle);
  }
 
  public void addToWatchlist(int userId, int nameSpace, String pageTitle) throws SQLException {
    AddWatchList proc = this.getProcedure(AddWatchList.class);
        assert (proc != null);
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.