static void |
ExportUtil.exportAll(Database db,
File dir) |
Copy all tables into new delimited text files
Equivalent to: exportAll(db, dir, "csv");
|
static void |
ExportUtil.exportAll(Database db,
File dir,
String ext) |
Copy all tables into new delimited text files
Equivalent to: exportFile(db, name, f, false, null, '"',
SimpleExportFilter.INSTANCE);
|
static void |
ExportUtil.exportAll(Database db,
File dir,
String ext,
boolean header) |
Copy all tables into new delimited text files
Equivalent to: exportFile(db, name, f, false, null, '"',
SimpleExportFilter.INSTANCE);
|
static void |
ExportUtil.exportAll(Database db,
File dir,
String ext,
boolean header,
String delim,
char quote,
ExportFilter filter) |
Copy all tables into new delimited text files
Equivalent to: exportFile(db, name, f, false, null, '"',
SimpleExportFilter.INSTANCE);
|
static void |
ExportUtil.exportFile(Database db,
String tableName,
File f) |
Copy a table into a new delimited text file
Equivalent to: exportFile(db, name, f, false, null, '"',
SimpleExportFilter.INSTANCE);
|
static void |
ExportUtil.exportFile(Database db,
String tableName,
File f,
boolean header,
String delim,
char quote,
ExportFilter filter) |
Copy a table into a new delimited text file
Nearly equivalent to: exportWriter(db, name, new BufferedWriter(f),
header, delim, quote, filter);
|
static void |
ExportUtil.exportWriter(Database db,
String tableName,
BufferedWriter out) |
Copy a table in this database into a new delimited text file
Equivalent to: exportWriter(db, name, out, false, null, '"',
SimpleExportFilter.INSTANCE);
|
static void |
ExportUtil.exportWriter(Database db,
String tableName,
BufferedWriter out,
boolean header,
String delim,
char quote,
ExportFilter filter) |
Copy a table in this database into a new delimited text file.
|
static String |
ImportUtil.importFile(File f,
Database db,
String name,
String delim) |
Copy a delimited text file into a new table in this database.
|
static String |
ImportUtil.importFile(File f,
Database db,
String name,
String delim,
char quote,
ImportFilter filter,
boolean useExistingTable) |
Copy a delimited text file into a new table in this database.
|
static String |
ImportUtil.importFile(File f,
Database db,
String name,
String delim,
char quote,
ImportFilter filter,
boolean useExistingTable,
boolean header) |
Copy a delimited text file into a new table in this database.
|
static String |
ImportUtil.importFile(File f,
Database db,
String name,
String delim,
ImportFilter filter) |
Copy a delimited text file into a new table in this database.
|
static String |
ImportUtil.importReader(BufferedReader in,
Database db,
String name,
String delim) |
Copy a delimited text file into a new table in this database.
|
static String |
ImportUtil.importReader(BufferedReader in,
Database db,
String name,
String delim,
char quote,
ImportFilter filter,
boolean useExistingTable) |
Copy a delimited text file into a new (or optionally exixsting) table in
this database.
|
static String |
ImportUtil.importReader(BufferedReader in,
Database db,
String name,
String delim,
char quote,
ImportFilter filter,
boolean useExistingTable,
boolean header) |
Copy a delimited text file into a new (or optionally exixsting) table in
this database.
|
static String |
ImportUtil.importReader(BufferedReader in,
Database db,
String name,
String delim,
ImportFilter filter) |
Copy a delimited text file into a new table in this database.
|
static String |
ImportUtil.importReader(BufferedReader in,
Database db,
String name,
String delim,
ImportFilter filter,
boolean useExistingTable) |
Copy a delimited text file into a new (or optionally exixsting) table in
this database.
|
static String |
ImportUtil.importResultSet(ResultSet source,
Database db,
String name) |
Copy an existing JDBC ResultSet into a new table in this database.
|
static String |
ImportUtil.importResultSet(ResultSet source,
Database db,
String name,
ImportFilter filter) |
Copy an existing JDBC ResultSet into a new table in this database.
|
static String |
ImportUtil.importResultSet(ResultSet source,
Database db,
String name,
ImportFilter filter,
boolean useExistingTable) |
Copy an existing JDBC ResultSet into a new (or optionally existing) table
in this database.
|
Database |
CustomLinkResolver.resolveLinkedDatabase(Database linkerDb,
String linkeeFileName) |
Custom implementation is:
|
Database |
LinkResolver.resolveLinkedDatabase(Database linkerDb,
String linkeeFileName) |
Returns the appropriate Database instance for the linkeeFileName from the
given linkerDb.
|
ExportUtil.Builder |
ExportUtil.Builder.setDatabase(Database db) |
|
ImportUtil.Builder |
ImportUtil.Builder.setDatabase(Database db) |
|