Merge pull request #13 from kenahoo/patch-1

Tell the user what the default quote/escape/sep characters are
master
Larry Ogrodnek 2014-02-18 20:10:23 -08:00
commit f315c1ae4b
1 changed files with 9 additions and 1 deletions

View File

@ -20,6 +20,14 @@ create table my_table(a string, b string, ...)
### Custom formatting
The default separator, quote, and escape characters from the `opencsv` library are:
```
DEFAULT_ESCAPE_CHARACTER \
DEFAULT_QUOTE_CHARACTER "
DEFAULT_SEPARATOR ,
```
You can also specify custom separator, quote, or escape characters.
```