tableControl.createTable(dbhandle);
final Date now = new Date();
final long nInserted = tableControl.loadData(sourceName,now,new Random(),source, null, dbhandle);
assertEquals(1,nInserted);
final Statement stmt = dbhandle.conn.createStatement();
final DBIterable it = new DBIterable(stmt,"SELECT * FROM TESTTABLE");
long n = 0;
for(final BurstMap row: it) {
final double aV = row.getAsDouble("A");
final long bV = row.getAsLong("B");
final String cV = row.getAsString("C");