// 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));
}
/**