Package com.oltpbenchmark.benchmarks.twitter.procedures

Examples of com.oltpbenchmark.benchmarks.twitter.procedures.GetTweet


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

    public void doSelect1Tweet(int tweet_id) throws SQLException {
        GetTweet proc = this.getProcedure(GetTweet.class);
        assert (proc != null);
        proc.run(conn, tweet_id).close();
    }
View Full Code Here

TOP

Related Classes of com.oltpbenchmark.benchmarks.twitter.procedures.GetTweet

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.