| 1 |
|
import java.sql.*; |
| 2 |
|
import java.io.*; |
| 3 |
|
|
| 4 |
+ |
// Main method to run the reports. |
| 5 |
|
public class DBReporterMain { |
| 6 |
|
|
| 7 |
+ |
public static final String webDir = "/home/cut/pjm2/webpages/reports/"; |
| 8 |
+ |
|
| 9 |
|
public static void main(String[] args) { |
| 10 |
|
|
| 11 |
|
long endTime = DateUtils.startOfToday(); |
| 12 |
< |
endTime = DateUtils.subtractDays(endTime, 2); |
| 12 |
> |
|
| 13 |
> |
// Uncomment next line to go back in time... |
| 14 |
> |
//endTime = DateUtils.subtractDays(endTime, 2); |
| 15 |
> |
|
| 16 |
|
long startTime = DateUtils.subtractDays(endTime, 1); |
| 17 |
|
|
| 18 |
|
DBReporter reporter = new DBReporter(startTime, endTime); |
| 27 |
|
} |
| 28 |
|
|
| 29 |
|
try { |
| 30 |
< |
reporter.runReports(reportList); |
| 30 |
> |
reporter.runReports(reportList, webDir); |
| 31 |
|
} |
| 32 |
|
catch (SQLException e) { |
| 33 |
|
System.out.println("Fatal SQL errors - Cannot complete reports: " + e); |