Class JDB2Writer

java.lang.Object
com.pnfsoftware.jeb.core.dao.impl.JDB2Writer
All Implemented Interfaces:
IFileDatabaseWriter, Closeable, AutoCloseable

public class JDB2Writer extends Object implements IFileDatabaseWriter
JDB2 (JEB saved project database) record writer.
  • Constructor Details

    • JDB2Writer

      public JDB2Writer(File f) throws IOException
      Create a writer for a new JDB2 file.
      Parameters:
      f - target JDB2 file
      Throws:
      IOException - if the file cannot be created
    • JDB2Writer

      public JDB2Writer(File f, boolean appendIfExists) throws IOException
      Create a writer for a JDB2 file.
      Parameters:
      f - target JDB2 file
      appendIfExists - if true, append new records to an existing JDB2 file
      Throws:
      IOException - if the file cannot be created, opened, or validated
  • Method Details