Package | Description |
---|---|
com.healthmarketscience.jackcess.util |
Modifier and Type | Class and Description |
---|---|
class |
SimpleExportFilter
Simple concrete implementation of ImportFilter which just returns the given
values.
|
Modifier and Type | Method and Description |
---|---|
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,
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(Cursor cursor,
BufferedWriter out,
boolean header,
String delim,
char quote,
ExportFilter filter)
Copy a table in this database into a new delimited text file.
|
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.
|
ExportUtil.Builder |
ExportUtil.Builder.setFilter(ExportFilter filter) |
Copyright © 2005–2018. All rights reserved.