Package org.prevayler.demos.scalability

Examples of org.prevayler.demos.scalability.RecordIterator


  AllRecordsReplacement(int records) {
    _records = records;
  }

  public void executeOn(ScalabilitySystem system, Date ignored) {
    system.replaceAllRecords(new RecordIterator(_records));
  }
View Full Code Here


    }
  }


  void replaceAllRecords(int records) {
    RecordIterator newRecords = new RecordIterator(records);

    try {
      connection.createStatement().execute("delete from " + table());
    } catch (SQLException sqlx) {
      dealWithSQLException(sqlx, "deleting all records from " + table());
    }

    while (newRecords.hasNext()) {
      insert(newRecords.next());
    }

    try {
      connection.commit();
    } catch (SQLException sqlx) {
View Full Code Here

TOP

Related Classes of org.prevayler.demos.scalability.RecordIterator

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.