Skip to content

Releases: hermann77/email-parser

v0.5.0: New version 0.5.0 with:

25 Sep 17:02
Compare
Choose a tag to compare

CLI options (apache commons cli) added

Usage:

java -jar build/libs/email-parser-all-.jar
-a,--attribute attribute name where the email addresses are saved
-d,--dbname database name where the email addresses are saved
-i,--input input file path
-p,--port database port
-t,--table database table name where the email addresses are
saved

v0.4.0: DB table name and attribute can be specified on command line:

23 Sep 18:04
Compare
Choose a tag to compare

DB table name and attribute can be specified on command line:

java -jar build/libs/email-parser-all-<VERSION>.jar <emails_folder_file> <DATABASE_NAME> <TABLE_NAME> <ATTRIBUTE_NAME> <DB_PORT>

DELETE FROM table

20 Sep 16:38
Compare
Choose a tag to compare

DELETE SQL works now.
Avoid Oracle's problem to not support createArrayOf('VARCHAR', array) with 'DELETE FROM ...... WHERE NOT IN(?)'