tbrugz.sqldump.sqlrun.def.Constants 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.sqldump.sqlrun.def;
public class Constants {
public static final String STDIN = "";
//prefixes
public static final String SQLRUN_PROPS_PREFIX = "sqlrun";
public static final String PREFIX_EXEC = SQLRUN_PROPS_PREFIX + ".exec.";
public static final String PREFIX_ASSERT = SQLRUN_PROPS_PREFIX + ".assert.";
//suffixes
public static final String SUFFIX_IMPORT = ".import";
public static final String SUFFIX_BATCH_MODE = ".batchmode";
public static final String SUFFIX_BATCH_SIZE = ".batchsize";
public static final String SUFFIX_ENCODING = ".encoding";
public static final String SUFFIX_DEFAULT_ENCODING = ".defaultencoding";
public static final String SUFFIX_FAILONERROR = ".failonerror";
}