예제 #1
0
  public ArchiveKraken(TableKraken table, Path path) {
    Objects.requireNonNull(table);
    Objects.requireNonNull(path);

    _table = table;
    _path = path;

    _archiveKelp = table.getTableKelp().archive(_path);
    _archiveKelp.sql(table.getSql());
  }
예제 #2
0
 public void exec() throws IOException {
   _archiveKelp.exec();
 }
예제 #3
0
  public ArchiveKraken zip(boolean isZip) {
    _archiveKelp.zip(isZip);

    return this;
  }