}
}
}
db.close();
for(int i=0;i<timeWindow.length;i++) {
TableCreator tc = new TableCreator();
long start = current;
long end = current + (timeWindow[i]*1440*60*1000);
try {
tc.createTables(start, end);
} catch (Exception e) {
fail("Fail to create database tables."+ExceptionUtil.getStackTrace(e));
}
}
}