// Use simple insert statements to insert data.
// currently only this form of load is present, once we have
// different implementations, the loading mechanism will need
// to be configurable taking an option from the command line
// arguments.
Load loader = new SimpleInsert();
loader.setupLoad(getConnection(), scale);
long start = System.currentTimeMillis();
loader.populateAllTables();
long stop = System.currentTimeMillis();
System.out.println("Time to load (ms)=" + (stop - start));
}