tbrugz.sqldiff.DiffGrabber Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqldump Show documentation
Show all versions of sqldump Show documentation
Utility to dump schema and data from a RDBMS
package tbrugz.sqldiff;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.Reader;
import javax.xml.bind.JAXBException;
import tbrugz.sqldiff.model.Diff;
public interface DiffGrabber {
String type();
Diff grabDiff(Reader reader) throws JAXBException;
Diff grabDiff(File file) throws JAXBException, FileNotFoundException;
}