Skip to content

Commit 391b3b7

Browse files
author
David Lopez
committed
Update readme charset doc
1 parent 69dfec3 commit 391b3b7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ If _mailSendTo_ configured the tool sends an email with formatted output.
2626
* printHeader=true/false If true adds header with query's column name. Default true
2727
* printFieldSeparator=Field separator for printing. Default tab (\t)
2828
* formatterName=Formatter type, possible values: text, html or csv (default text)
29+
* charset=Charset, to force output file charset. Default: jvm default charset
2930

3031
## Mail config values:
3132

src/main/java/es/jdlopez/sqlcmd/RunnerConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ public class RunnerConfig {
2323
private String mailFrom;
2424
private String mailSubject;
2525
private String formatterName;
26+
private String charset;
2627

2728
private ResultFormatter formatter = null;
28-
private String charset;
2929

3030
public ResultFormatter buildFormatter() {
3131
if (formatter == null) {

0 commit comments

Comments
 (0)