Package com.oltpbenchmark.benchmarks.epinions.procedures

Examples of com.oltpbenchmark.benchmarks.epinions.procedures.GetReviewItemById


        conn.commit();
        return (TransactionStatus.SUCCESS);
    }

    public void reviewItemByID() throws SQLException {
        GetReviewItemById proc = this.getProcedure(GetReviewItemById.class);
        assert (proc != null);
        long iid = Long.valueOf(item_ids.get(rand.nextInt(item_ids.size())));
        proc.run(conn, iid);
    }
View Full Code Here

TOP

Related Classes of com.oltpbenchmark.benchmarks.epinions.procedures.GetReviewItemById

Copyright © 2018 www.massapicom. 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.