- Db - Class in ch.brickwork.bsetl.db
-
A connection to a database
- Db() - Constructor for class ch.brickwork.bsetl.db.Db
-
open connection to default, can be used for testing purposes and opens a H2 file DB
connection to file default.h2
- Db(String, String, String, String, File, int) - Constructor for class ch.brickwork.bsetl.db.Db
-
open connection to any database.
- DbSanitizer - Class in ch.brickwork.bsetl.sanitize
-
A Preprocessor tailored to sanitize values within rows.
- DbSanitizer(SanitizerConfiguration) - Constructor for class ch.brickwork.bsetl.sanitize.DbSanitizer
-
If rows can't be identified; means you will
not be able to use contextual value sanitizers; if each row in your table has a unique
key (may be composed), it is preferrable to use DbSanitizer(config, function)
- DbSanitizer(SanitizerConfiguration, Function<Map<String, Object>, String>) - Constructor for class ch.brickwork.bsetl.sanitize.DbSanitizer
-
If each of your rows can be identified with a unique identifier (may be composed), this
is the best constructor to use; if not, use the simple constructor.
- dropTableIfExists(String) - Method in class ch.brickwork.bsetl.db.Db
-
- dropViewIfExists(String) - Method in class ch.brickwork.bsetl.db.Db
-
- dumpQuery(String) - Method in class ch.brickwork.bsetl.db.Db
-