コード例 #1
0
ファイル: SnapshotDao.java プロジェクト: scottag99/glowroot
 SnapshotDao(DataSource dataSource, RollingFile rollingFile) throws SQLException {
   this.dataSource = dataSource;
   this.rollingFile = rollingFile;
   upgradeSnapshotTable(dataSource);
   dataSource.syncTable("snapshot", columns);
   dataSource.syncIndexes("snapshot", indexes);
 }