Package com.oltpbenchmark.benchmarks.tpcc.pojo

Examples of com.oltpbenchmark.benchmarks.tpcc.pojo.Item


            + "item.csv"));
        LOG.debug("\nWriting Item file to: " + fileLocation
            + "item.csv");
      }

      Item item = new Item();

      for (int i = 1; i <= itemKount; i++) {

        item.i_id = i;
        item.i_name = TPCCUtil.randomStr(TPCCUtil.randomNumber(14, 24,
View Full Code Here

TOP

Related Classes of com.oltpbenchmark.benchmarks.tpcc.pojo.Item

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.